gabriel / musehub public
requirements.txt text
39 lines 953 B
6b53f1af feat: supercharge all pages, full SOC refactor, and Python 3.14 upgrade (#7) Gabriel Cardona <cgcardona@gmail.com> 5d ago
1 # Core dependencies
2 fastapi>=0.135.1
3 jinja2>=3.1.6
4 aiofiles>=25.1.0
5 uvicorn[standard]>=0.42.0
6 httpx>=0.28.1
7 pydantic>=2.12.5
8 pydantic-settings>=2.13.1
9 websockets>=15.0.1
10 PyJWT>=2.10.1
11
12 # Database dependencies
13 sqlalchemy[asyncio]>=2.0.48
14 asyncpg>=0.31.0 # PostgreSQL async driver
15 aiosqlite>=0.21.0 # SQLite async driver (for development)
16 alembic>=1.18.4 # Database migrations
17 psycopg2-binary>=2.9.10 # PostgreSQL driver (for Alembic)
18
19 # Security dependencies
20 slowapi>=0.1.9 # Rate limiting
21 cryptography>=46.0.5 # AES-256 envelope encryption for webhook secrets at rest
22
23 # AWS S3 for on-demand asset delivery (drum kits, soundfonts)
24 boto3>=1.42.71
25
26 mido>=1.3.3 # MIDI file parsing
27 pyyaml>=6.0.2 # YAML parsing (repo metadata, config files)
28
29 # CLI
30 typer>=0.15.4
31
32 # Development dependencies
33 pytest>=8.3.5
34 pytest-asyncio>=0.25.3
35 pytest-cov>=6.1.0
36 factory-boy>=3.3.3
37 coverage>=7.8.0
38 anyio>=4.9.0
39 mypy>=1.15.0