30 lines
506 B
Plaintext
30 lines
506 B
Plaintext
|
|
# Orders Service Dependencies
|
||
|
|
# FastAPI and web framework
|
||
|
|
fastapi==0.104.1
|
||
|
|
uvicorn[standard]==0.24.0
|
||
|
|
pydantic==2.5.0
|
||
|
|
pydantic-settings==2.1.0
|
||
|
|
|
||
|
|
# Database
|
||
|
|
sqlalchemy==2.0.23
|
||
|
|
asyncpg==0.29.0
|
||
|
|
alembic==1.13.1
|
||
|
|
|
||
|
|
# HTTP clients
|
||
|
|
httpx==0.25.2
|
||
|
|
|
||
|
|
# Logging and monitoring
|
||
|
|
structlog==23.2.0
|
||
|
|
|
||
|
|
# Date and time utilities
|
||
|
|
python-dateutil==2.8.2
|
||
|
|
|
||
|
|
# Validation and utilities
|
||
|
|
email-validator==2.1.0
|
||
|
|
|
||
|
|
# Authentication
|
||
|
|
python-jose[cryptography]==3.3.0
|
||
|
|
|
||
|
|
# Development dependencies (optional)
|
||
|
|
pytest==7.4.3
|
||
|
|
pytest-asyncio==0.21.1
|