31 lines
660 B
Plaintext
31 lines
660 B
Plaintext
# Core dependencies
|
|
asyncua==1.0.6
|
|
pymodbus==3.5.4
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
psycopg2-binary==2.9.9
|
|
sqlalchemy==2.0.23
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
cryptography==41.0.7
|
|
PyJWT==2.8.0
|
|
structlog==23.2.0
|
|
python-dotenv==1.0.0
|
|
|
|
# Optional dependencies
|
|
redis==5.0.1 # For distributed caching
|
|
prometheus-client==0.19.0 # For metrics
|
|
aiohttp==3.9.1 # For async HTTP requests
|
|
aiosmtplib==3.0.1 # For email alerts
|
|
twilio==8.10.0 # For SMS alerts
|
|
httpx==0.25.0 # For webhook alerts
|
|
|
|
# Development dependencies
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
flake8==6.1.0
|
|
mypy==1.7.1
|
|
black==23.11.0
|
|
isort==5.13.2
|
|
pre-commit==3.5.0 |