2025-08-21 20:28:14 +02:00
|
|
|
# Orders Service Dependencies
|
|
|
|
|
# FastAPI and web framework
|
2025-10-17 23:09:40 +02:00
|
|
|
fastapi==0.119.0
|
|
|
|
|
uvicorn[standard]==0.32.1
|
|
|
|
|
pydantic==2.12.3
|
|
|
|
|
pydantic-settings==2.7.1
|
2025-08-21 20:28:14 +02:00
|
|
|
|
|
|
|
|
# Database
|
2025-10-17 23:09:40 +02:00
|
|
|
sqlalchemy==2.0.44
|
|
|
|
|
asyncpg==0.30.0
|
|
|
|
|
alembic==1.17.0
|
|
|
|
|
psycopg2-binary==2.9.10
|
2025-08-21 20:28:14 +02:00
|
|
|
|
|
|
|
|
# HTTP clients
|
2025-10-17 23:09:40 +02:00
|
|
|
httpx==0.28.1
|
2025-08-21 20:28:14 +02:00
|
|
|
|
2025-08-23 19:47:08 +02:00
|
|
|
# Redis for caching
|
2025-10-17 23:09:40 +02:00
|
|
|
redis==6.4.0
|
2025-08-23 19:47:08 +02:00
|
|
|
|
|
|
|
|
# Message queuing
|
2025-10-17 23:09:40 +02:00
|
|
|
aio-pika==9.4.3
|
2025-08-23 19:47:08 +02:00
|
|
|
|
2025-09-09 17:40:57 +02:00
|
|
|
# Scheduling
|
2025-10-17 23:09:40 +02:00
|
|
|
APScheduler==3.10.4
|
2025-09-09 17:40:57 +02:00
|
|
|
|
2025-08-21 20:28:14 +02:00
|
|
|
# Logging and monitoring
|
2025-10-17 23:09:40 +02:00
|
|
|
structlog==25.4.0
|
2026-01-08 19:25:52 +01:00
|
|
|
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
|
2025-08-21 20:28:14 +02:00
|
|
|
|
|
|
|
|
# Date and time utilities
|
2025-10-17 23:09:40 +02:00
|
|
|
python-dateutil==2.9.0.post0
|
|
|
|
|
pytz==2024.2
|
2025-08-21 20:28:14 +02:00
|
|
|
|
|
|
|
|
# Validation and utilities
|
2025-10-17 23:09:40 +02:00
|
|
|
email-validator==2.2.0
|
2025-08-21 20:28:14 +02:00
|
|
|
|
|
|
|
|
# Authentication
|
|
|
|
|
python-jose[cryptography]==3.3.0
|
2025-10-17 23:09:40 +02:00
|
|
|
cryptography==44.0.0
|
2025-08-21 20:28:14 +02:00
|
|
|
|
2025-10-17 23:09:40 +02:00
|
|
|
# Development dependencies
|
|
|
|
|
python-multipart==0.0.6
|
|
|
|
|
pytest==8.3.4
|
|
|
|
|
pytest-asyncio==0.25.2
|