Initial commit - production deployment
This commit is contained in:
60
services/production/requirements.txt
Normal file
60
services/production/requirements.txt
Normal file
@@ -0,0 +1,60 @@
|
||||
# Production Service Dependencies
|
||||
# FastAPI and web framework
|
||||
fastapi==0.119.0
|
||||
uvicorn[standard]==0.32.1
|
||||
pydantic==2.12.3
|
||||
pydantic-settings==2.7.1
|
||||
|
||||
# Database
|
||||
sqlalchemy==2.0.44
|
||||
asyncpg==0.30.0
|
||||
alembic==1.17.0
|
||||
psycopg2-binary==2.9.10
|
||||
|
||||
# HTTP clients
|
||||
httpx==0.28.1
|
||||
|
||||
# IoT and Industrial Protocols
|
||||
# asyncua==1.1.5 # OPC UA client (uncomment when implementing OPC UA connector)
|
||||
# paho-mqtt==2.1.0 # MQTT client (uncomment when implementing MQTT connector)
|
||||
|
||||
# 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
|
||||
|
||||
# Message queues and Redis
|
||||
aio-pika==9.4.3
|
||||
redis==6.4.0
|
||||
|
||||
# Scheduling
|
||||
APScheduler==3.10.4
|
||||
|
||||
# Date and time utilities
|
||||
python-dateutil==2.9.0.post0
|
||||
pytz==2024.2
|
||||
|
||||
# Data processing for ML insights
|
||||
pandas==2.2.3
|
||||
numpy==2.2.1
|
||||
scikit-learn==1.6.1
|
||||
scipy==1.15.1
|
||||
|
||||
# Validation and utilities
|
||||
email-validator==2.2.0
|
||||
|
||||
# Authentication
|
||||
python-jose[cryptography]==3.3.0
|
||||
cryptography==44.0.0
|
||||
|
||||
# Development dependencies
|
||||
python-multipart==0.0.6
|
||||
pytest==8.3.4
|
||||
pytest-asyncio==0.25.2
|
||||
Reference in New Issue
Block a user