Metadata-Version: 2.4
Name: flask-api-starter
Version: 1.1.2
Summary: A scalable Flask API starter with authentication, blueprints, DB setup, and full project generator
Author-email: Paul Mkundika Jr <authenticpaulmeyers@gmail.com>
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: Flask
Requires-Dist: Flask-JWT-Extended
Requires-Dist: Flask-Migrate
Requires-Dist: Flask-SQLAlchemy
Requires-Dist: python-dotenv
Requires-Dist: Werkzeug
Dynamic: license-file

# flask-api-starter

A scalable Flask API starter with authentication (JWT), blueprints, database setup, environment configuration, and a CLI project generator.

Usage:
1. Installation:
   ```
   pip install flask-api-starter
   ```

2. Create a new project:
   ```
   flask-api-starter new myproject
   ```

3. In the generated project:
   ```
   cd myproject
   pip install -r requirements.txt
   python run.py
   ```

This package contains a `template/` directory that will be copied into new projects by the CLI.
