Metadata-Version: 2.4
Name: fastapi-boilerplate-farhan
Version: 0.1.0
Summary: A CLI to scaffold FastAPI apps with DB support
Author-email: Farhan <you@example.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: fastapi
Requires-Dist: uvicorn
Requires-Dist: python-dotenv
Provides-Extra: mysql
Requires-Dist: mysqlclient; extra == "mysql"
Requires-Dist: SQLAlchemy; extra == "mysql"
Requires-Dist: databases[aiomysql]; extra == "mysql"
Provides-Extra: postgresql
Requires-Dist: asyncpg; extra == "postgresql"
Requires-Dist: SQLAlchemy; extra == "postgresql"
Requires-Dist: databases[postgresql]; extra == "postgresql"
Dynamic: license-file

# FastAPI Boilerplate

Scaffold a FastAPI project with MySQL or PostgreSQL support.

## Installation

```bash
pip install fastapi-boilerplate[mysql]
```
