| # PyFundaments Core Dependencies (always needed) |
| asyncpg |
| python-dotenv |
| passlib |
| cryptography |
|
|
| # MCP Hub Dependencies (needed for app/mcp.py) |
| fastmcp |
| httpx |
| quart |
| hypercorn |
|
|
| # Internal SQLite IPC (needed for app/db_sync.py) |
| aiosqlite |
|
|
| # HTTP client operations (API calls, webhooks) |
| requests |
|
|
| # Additional dependencies for specific app types: |
| # Uncomment what your application needs |
|
|
| # File operations (ML, data processing, file uploads) |
| #aiofiles |
|
|
| # Web applications (Flask-based apps, APIs) |
| #Flask[async] |
|
|
| # Discord bots |
| #discord.py |
| #PyNaCl |
|
|
| # Alternative PostgreSQL driver (if not using asyncpg) |
| #psycopg2-binary |