- Bump minimum Python version from 3.11 to 3.13 across all apps - Add Python 3.11-3.13 test matrix to CLI workflow - Document Python 3.11+ requirement in .env.example - Fix Starlette Broadcast removal with in-process fallback implementation - Add _InProcessBroadcast class for tests when Starlette Broadcast is unavailable - Refactor API key validators to read live settings instead of cached values - Update database models with explicit
41 lines
774 B
Plaintext
41 lines
774 B
Plaintext
# AITBC Coordinator API Requirements
|
|
# Generated from pyproject.toml dependencies
|
|
|
|
# Core Framework
|
|
fastapi>=0.111.0
|
|
uvicorn[standard]>=0.30.0
|
|
gunicorn>=22.0.0
|
|
|
|
# Data & Validation
|
|
pydantic>=2.7.0
|
|
pydantic-settings>=2.2.1
|
|
sqlalchemy>=2.0.30
|
|
aiosqlite>=0.20.0
|
|
sqlmodel>=0.0.16
|
|
numpy>=1.26.0
|
|
tenseal
|
|
concrete-ml
|
|
|
|
# HTTP & Networking
|
|
httpx>=0.27.0
|
|
|
|
# Configuration & Environment
|
|
python-dotenv>=1.0.1
|
|
|
|
# Rate Limiting & Performance
|
|
slowapi>=0.1.8
|
|
orjson>=3.10.0
|
|
|
|
# Monitoring
|
|
prometheus-client>=0.19.0
|
|
|
|
# Local Dependencies
|
|
# Note: These should be installed in development mode with:
|
|
# pip install -e ../../packages/py/aitbc-crypto
|
|
# pip install -e ../../packages/py/aitbc-sdk
|
|
|
|
# Development Dependencies (optional)
|
|
# pytest>=8.2.0
|
|
# pytest-asyncio>=0.23.0
|
|
# httpx[cli]>=0.27.0
|