47 lines
657 B
Plaintext
47 lines
657 B
Plaintext
|
|
# FastAPI and ASGI
|
||
|
|
fastapi==0.104.1
|
||
|
|
uvicorn[standard]==0.24.0
|
||
|
|
python-multipart==0.0.6
|
||
|
|
|
||
|
|
# Database
|
||
|
|
sqlalchemy==2.0.23
|
||
|
|
alembic==1.12.1
|
||
|
|
psycopg2-binary==2.9.9
|
||
|
|
asyncpg==0.29.0
|
||
|
|
|
||
|
|
# Pydantic
|
||
|
|
pydantic==2.5.0
|
||
|
|
pydantic-settings==2.1.0
|
||
|
|
|
||
|
|
# HTTP Client
|
||
|
|
httpx==0.25.1
|
||
|
|
aiohttp==3.9.1
|
||
|
|
|
||
|
|
# Redis
|
||
|
|
redis==5.0.1
|
||
|
|
hiredis==2.2.3
|
||
|
|
|
||
|
|
# Utilities
|
||
|
|
python-dotenv==1.0.0
|
||
|
|
python-dateutil==2.8.2
|
||
|
|
pytz==2023.3
|
||
|
|
|
||
|
|
# Logging
|
||
|
|
structlog==23.2.0
|
||
|
|
|
||
|
|
# Machine Learning (for confidence scoring and impact estimation)
|
||
|
|
numpy==1.26.2
|
||
|
|
pandas==2.1.3
|
||
|
|
scikit-learn==1.3.2
|
||
|
|
|
||
|
|
# Testing
|
||
|
|
pytest==7.4.3
|
||
|
|
pytest-asyncio==0.21.1
|
||
|
|
pytest-cov==4.1.0
|
||
|
|
httpx==0.25.1
|
||
|
|
|
||
|
|
# Code Quality
|
||
|
|
black==23.11.0
|
||
|
|
flake8==6.1.0
|
||
|
|
mypy==1.7.1
|