20 lines
579 B
Plaintext
20 lines
579 B
Plaintext
# Python Requirements for Complete System (Dashboard + Processing)
|
|
# Install with: pip3 install -r requirements-complete.txt
|
|
|
|
# Core dependencies
|
|
pyyaml>=6.0
|
|
|
|
# Dashboard dependencies
|
|
flask>=2.3.0
|
|
flask-cors>=4.0.0
|
|
|
|
# Optional but recommended
|
|
# For better performance and security
|
|
gunicorn>=21.0.0 # Production WSGI server (instead of Flask dev server)
|
|
gevent>=23.0.0 # Async support for better performance
|
|
|
|
# Development dependencies (optional)
|
|
# pytest>=7.4.0 # For testing
|
|
# black>=23.0.0 # Code formatting
|
|
# flake8>=6.0.0 # Linting
|