64 lines
967 B
Plaintext
64 lines
967 B
Plaintext
# services/auth/requirements.txt
|
|
|
|
# FastAPI and ASGI
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
gunicorn==21.2.0
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
asyncpg==0.29.0
|
|
alembic==1.12.1
|
|
aiosqlite==0.19.0
|
|
|
|
# Authentication & Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
python-multipart==0.0.6
|
|
|
|
# HTTP Client
|
|
httpx==0.25.2
|
|
aiohttp==3.9.1
|
|
|
|
# Data Validation
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.0.3
|
|
email-validator==2.1.0
|
|
|
|
# Environment
|
|
python-dotenv==1.0.0
|
|
|
|
# Logging and Monitoring
|
|
structlog==23.2.0
|
|
prometheus-client==0.19.0
|
|
|
|
# Redis
|
|
redis==5.0.1
|
|
|
|
# Utilities
|
|
python-dateutil==2.8.2
|
|
pytz==2023.3
|
|
|
|
# Testing Dependencies
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
pytest-xdist==3.5.0
|
|
pytest-mock==3.12.0
|
|
pytest-timeout==2.2.0
|
|
pytest-html==4.1.1
|
|
pytest-json-report==1.5.0
|
|
aiosqlite==0.19.0
|
|
|
|
# Test Utilities
|
|
factory-boy==3.3.0
|
|
faker==20.1.0
|
|
freezegun==1.2.2
|
|
|
|
|
|
# Development
|
|
black==23.11.0
|
|
isort==5.12.0
|
|
flake8==6.1.0
|
|
mypy==1.7.1
|
|
pre-commit==3.6.0 |