Initial commit - production deployment
This commit is contained in:
77
services/auth/requirements.txt
Normal file
77
services/auth/requirements.txt
Normal file
@@ -0,0 +1,77 @@
|
||||
# services/auth/requirements.txt
|
||||
|
||||
# FastAPI and ASGI
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
gunicorn==23.0.0
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
aiosqlite==0.20.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# Authentication & Security
|
||||
python-jose[cryptography]==3.3.0
|
||||
passlib[bcrypt]==1.7.4
|
||||
python-multipart==0.0.6
|
||||
bcrypt==4.2.1
|
||||
cryptography==44.0.0
|
||||
PyJWT==2.10.1
|
||||
|
||||
# HTTP Client
|
||||
httpx==0.28.1
|
||||
aiohttp==3.11.10
|
||||
|
||||
# Data Validation
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
email-validator==2.2.0
|
||||
|
||||
# Environment
|
||||
python-dotenv==1.0.1
|
||||
|
||||
# Logging and Monitoring
|
||||
structlog==25.4.0
|
||||
psutil==5.9.8
|
||||
opentelemetry-api==1.39.1
|
||||
opentelemetry-sdk==1.39.1
|
||||
opentelemetry-instrumentation-fastapi==0.60b1
|
||||
opentelemetry-exporter-otlp-proto-grpc==1.39.1
|
||||
opentelemetry-exporter-otlp-proto-http==1.39.1
|
||||
opentelemetry-instrumentation-httpx==0.60b1
|
||||
opentelemetry-instrumentation-redis==0.60b1
|
||||
opentelemetry-instrumentation-sqlalchemy==0.60b1
|
||||
|
||||
# Redis
|
||||
redis==6.4.0
|
||||
|
||||
# Message Queue
|
||||
aio-pika==9.4.3
|
||||
|
||||
# Utilities
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Testing Dependencies
|
||||
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
|
||||
pytest-html==4.1.1
|
||||
pytest-json-report==1.5.0
|
||||
|
||||
# Test Utilities
|
||||
factory-boy==3.3.1
|
||||
faker==33.1.0
|
||||
freezegun==1.5.1
|
||||
|
||||
# Development
|
||||
black==24.10.0
|
||||
isort==5.13.2
|
||||
flake8==7.1.1
|
||||
mypy==1.14.1
|
||||
pre-commit==4.0.1
|
||||
Reference in New Issue
Block a user