2025-07-20 18:08:24 +02:00
|
|
|
# services/auth/requirements.txt
|
|
|
|
|
|
|
|
|
|
# FastAPI and ASGI
|
2025-10-17 23:09:40 +02:00
|
|
|
fastapi==0.119.0
|
|
|
|
|
uvicorn[standard]==0.32.1
|
|
|
|
|
gunicorn==23.0.0
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Database
|
2025-10-17 23:09:40 +02:00
|
|
|
sqlalchemy==2.0.44
|
|
|
|
|
asyncpg==0.30.0
|
|
|
|
|
alembic==1.17.0
|
|
|
|
|
aiosqlite==0.20.0
|
|
|
|
|
psycopg2-binary==2.9.10
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Authentication & Security
|
2025-07-17 13:09:24 +02:00
|
|
|
python-jose[cryptography]==3.3.0
|
|
|
|
|
passlib[bcrypt]==1.7.4
|
|
|
|
|
python-multipart==0.0.6
|
2025-10-17 23:09:40 +02:00
|
|
|
bcrypt==4.2.1
|
|
|
|
|
cryptography==44.0.0
|
|
|
|
|
PyJWT==2.10.1
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# HTTP Client
|
2025-10-17 23:09:40 +02:00
|
|
|
httpx==0.28.1
|
|
|
|
|
aiohttp==3.11.10
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Data Validation
|
2025-10-17 23:09:40 +02:00
|
|
|
pydantic==2.12.3
|
|
|
|
|
pydantic-settings==2.7.1
|
|
|
|
|
email-validator==2.2.0
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Environment
|
2025-10-17 23:09:40 +02:00
|
|
|
python-dotenv==1.0.1
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Logging and Monitoring
|
2025-10-17 23:09:40 +02:00
|
|
|
structlog==25.4.0
|
|
|
|
|
prometheus-client==0.23.1
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Redis
|
2025-10-17 23:09:40 +02:00
|
|
|
redis==6.4.0
|
|
|
|
|
|
|
|
|
|
# Message Queue
|
|
|
|
|
aio-pika==9.4.3
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Utilities
|
2025-10-17 23:09:40 +02:00
|
|
|
python-dateutil==2.9.0.post0
|
|
|
|
|
pytz==2024.2
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Testing Dependencies
|
2025-10-17 23:09:40 +02:00
|
|
|
pytest==8.3.4
|
|
|
|
|
pytest-asyncio==0.25.2
|
|
|
|
|
pytest-cov==6.0.0
|
|
|
|
|
pytest-xdist==3.6.1
|
|
|
|
|
pytest-mock==3.14.0
|
|
|
|
|
pytest-timeout==2.3.1
|
2025-07-20 18:08:24 +02:00
|
|
|
pytest-html==4.1.1
|
|
|
|
|
pytest-json-report==1.5.0
|
|
|
|
|
|
|
|
|
|
# Test Utilities
|
2025-10-17 23:09:40 +02:00
|
|
|
factory-boy==3.3.1
|
|
|
|
|
faker==33.1.0
|
|
|
|
|
freezegun==1.5.1
|
2025-07-20 18:08:24 +02:00
|
|
|
|
|
|
|
|
# Development
|
2025-10-17 23:09:40 +02:00
|
|
|
black==24.10.0
|
|
|
|
|
isort==5.13.2
|
|
|
|
|
flake8==7.1.1
|
|
|
|
|
mypy==1.14.1
|
|
|
|
|
pre-commit==4.0.1
|