Metadata-Version: 2.1
Name: project-generator-python
Version: 0.1.0
Summary: A CLI tool to generate Python projects with various templates
Author-email: barryduan <duanyongcheng77@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/duanyongcheng/flask-project-generator
Project-URL: Repository, https://github.com/duanyongcheng/flask-project-generator.git
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: click
Requires-Dist: questionary
Requires-Dist: python-dotenv

# Flask Project Generator

A command-line tool to quickly generate Flask projects with common patterns and templates.

## Installation

```bash
pip install python-project-generator
```

## Usage

```bash
create-python-project
```

Follow the interactive prompts to:
1. Enter project name
2. Choose template (basic/full)
3. Include Docker files (optional)

## Features

- Multiple project templates
- Docker support
- Common Flask patterns and structures
- AI integration ready

## Development

1. Clone the repository
2. Create virtual environment:
   ```bash
   python -m venv venv
   source venv/bin/activate  # or `venv\Scripts\activate` on Windows
   ```
3. Install in development mode:
   ```bash
   pip install -e .
   ```
