2025-08-13 17:39:35 +02:00
|
|
|
# Recipe Service Dependencies
|
|
|
|
|
|
|
|
|
|
# FastAPI and server
|
2025-10-17 23:09:40 +02:00
|
|
|
fastapi==0.119.0
|
|
|
|
|
uvicorn[standard]==0.32.1
|
2025-08-13 17:39:35 +02:00
|
|
|
python-multipart==0.0.6
|
|
|
|
|
|
|
|
|
|
# Database
|
2025-10-17 23:09:40 +02:00
|
|
|
sqlalchemy==2.0.44
|
|
|
|
|
psycopg2-binary==2.9.10
|
|
|
|
|
asyncpg==0.30.0
|
|
|
|
|
alembic==1.17.0
|
2025-08-13 17:39:35 +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-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# HTTP requests
|
2025-10-17 23:09:40 +02:00
|
|
|
httpx==0.28.1
|
|
|
|
|
requests==2.32.3
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Async support
|
2025-10-17 23:09:40 +02:00
|
|
|
asyncio-mqtt==0.16.2
|
|
|
|
|
aiofiles==24.1.0
|
2025-08-13 17:39:35 +02:00
|
|
|
|
2025-09-29 13:13:12 +02:00
|
|
|
# Messaging
|
2025-10-17 23:09:40 +02:00
|
|
|
aio-pika==9.4.3
|
2025-09-29 13:13:12 +02:00
|
|
|
|
2025-10-17 23:09:40 +02:00
|
|
|
# Caching
|
|
|
|
|
redis==6.4.0
|
2025-08-13 17:39:35 +02:00
|
|
|
python-redis-cache==0.1.0
|
|
|
|
|
|
|
|
|
|
# Monitoring and logging
|
2025-10-17 23:09:40 +02:00
|
|
|
structlog==25.4.0
|
|
|
|
|
python-json-logger==3.3.0
|
2026-01-08 19:25:52 +01:00
|
|
|
psutil==5.9.8
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Date/time handling
|
2025-10-17 23:09:40 +02:00
|
|
|
python-dateutil==2.9.0.post0
|
|
|
|
|
pytz==2024.2
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Data processing
|
2025-10-17 23:09:40 +02:00
|
|
|
pandas==2.2.3
|
|
|
|
|
numpy==2.2.2
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Authentication and security
|
|
|
|
|
python-jose[cryptography]==3.3.0
|
|
|
|
|
passlib[bcrypt]==1.7.4
|
2025-10-17 23:09:40 +02:00
|
|
|
cryptography==44.0.0
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Environment management
|
2025-10-17 23:09:40 +02:00
|
|
|
python-dotenv==1.0.1
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Testing
|
2025-10-17 23:09:40 +02:00
|
|
|
pytest==8.3.4
|
|
|
|
|
pytest-asyncio==0.25.2
|
2025-08-13 17:39:35 +02:00
|
|
|
|
|
|
|
|
# Development
|
2025-10-17 23:09:40 +02:00
|
|
|
black==24.10.0
|
|
|
|
|
flake8==7.1.1
|
|
|
|
|
mypy==1.14.1
|