Create new services: inventory, recipes, suppliers
This commit is contained in:
57
services/recipes/requirements.txt
Normal file
57
services/recipes/requirements.txt
Normal file
@@ -0,0 +1,57 @@
|
||||
# Recipe Service Dependencies
|
||||
|
||||
# FastAPI and server
|
||||
fastapi==0.104.1
|
||||
uvicorn==0.24.0
|
||||
python-multipart==0.0.6
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.23
|
||||
psycopg2-binary==2.9.9
|
||||
alembic==1.12.1
|
||||
|
||||
# Data validation
|
||||
pydantic==2.5.0
|
||||
email-validator==2.1.0
|
||||
|
||||
# HTTP requests
|
||||
httpx==0.25.2
|
||||
requests==2.31.0
|
||||
|
||||
# Async support
|
||||
asyncio-mqtt==0.16.1
|
||||
aiofiles==23.2.1
|
||||
|
||||
# Caching (optional)
|
||||
redis==5.0.1
|
||||
python-redis-cache==0.1.0
|
||||
|
||||
# Monitoring and logging
|
||||
structlog==23.2.0
|
||||
python-json-logger==2.0.4
|
||||
|
||||
# Date/time handling
|
||||
python-dateutil==2.8.2
|
||||
pytz==2023.3
|
||||
|
||||
# Data processing
|
||||
pandas==2.1.3
|
||||
numpy==1.25.2
|
||||
|
||||
# Authentication and security
|
||||
python-jose[cryptography]==3.3.0
|
||||
python-multipart==0.0.6
|
||||
passlib[bcrypt]==1.7.4
|
||||
|
||||
# Environment management
|
||||
python-dotenv==1.0.0
|
||||
|
||||
# Testing
|
||||
pytest==7.4.3
|
||||
pytest-asyncio==0.21.1
|
||||
httpx==0.25.2
|
||||
|
||||
# Development
|
||||
black==23.11.0
|
||||
flake8==6.1.0
|
||||
mypy==1.7.1
|
||||
Reference in New Issue
Block a user