requirements.txt
text
| 1 | # Core dependencies |
| 2 | fastapi>=0.135.1 |
| 3 | jinja2>=3.1.6 |
| 4 | mistune>=3.0.0 |
| 5 | aiofiles>=25.1.0 |
| 6 | uvicorn[standard]>=0.42.0 |
| 7 | httpx>=0.28.1 |
| 8 | pydantic>=2.12.5 |
| 9 | pydantic-settings>=2.13.1 |
| 10 | websockets>=15.0.1 |
| 11 | PyJWT>=2.10.1 |
| 12 | |
| 13 | # Database dependencies |
| 14 | sqlalchemy[asyncio]>=2.0.48 |
| 15 | asyncpg>=0.31.0 # PostgreSQL async driver |
| 16 | aiosqlite>=0.21.0 # SQLite async driver (for development) |
| 17 | alembic>=1.18.4 # Database migrations |
| 18 | psycopg2-binary>=2.9.10 # PostgreSQL driver (for Alembic) |
| 19 | |
| 20 | # Security dependencies |
| 21 | slowapi>=0.1.9 # Rate limiting |
| 22 | cryptography>=46.0.5 # AES-256 envelope encryption for webhook secrets at rest |
| 23 | |
| 24 | # AWS S3 for on-demand asset delivery (drum kits, soundfonts) |
| 25 | boto3>=1.42.71 |
| 26 | |
| 27 | mido>=1.3.3 # MIDI file parsing |
| 28 | pyyaml>=6.0.2 # YAML parsing (repo metadata, config files) |
| 29 | mistune>=3.0.0 # Markdown → HTML for README rendering |
| 30 | |
| 31 | # CLI |
| 32 | typer>=0.15.4 |
| 33 | |
| 34 | # Development dependencies |
| 35 | pytest>=8.3.5 |
| 36 | pytest-asyncio>=0.25.3 |
| 37 | pytest-cov>=6.1.0 |
| 38 | factory-boy>=3.3.3 |
| 39 | coverage>=7.8.0 |
| 40 | anyio>=4.9.0 |
| 41 | mypy>=1.15.0 |