Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +23 -0
requirements.txt
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# GPU Monitoring and Fan Control System Requirements
|
| 2 |
+
|
| 3 |
+
# Core Python packages
|
| 4 |
+
PyQt5>=5.15.0
|
| 5 |
+
PyQt5-sip>=12.11.0
|
| 6 |
+
matplotlib>=3.5.0
|
| 7 |
+
flask>=2.0.0
|
| 8 |
+
flask-cors>=3.0.10
|
| 9 |
+
numpy>=1.21.0
|
| 10 |
+
psutil>=5.8.0
|
| 11 |
+
|
| 12 |
+
# Optional: For enhanced functionality
|
| 13 |
+
pyserial>=3.5 # For serial communication (if needed)
|
| 14 |
+
pyudev>=0.22.0 # For hardware detection
|
| 15 |
+
requests>=2.25.0 # For API calls
|
| 16 |
+
pandas>=1.3.0 # For data analysis
|
| 17 |
+
sqlite3 # Built-in (for data storage)
|
| 18 |
+
|
| 19 |
+
# Development and testing
|
| 20 |
+
pytest>=6.2.0
|
| 21 |
+
pytest-cov>=2.12.0
|
| 22 |
+
black>=21.0.0 # Code formatting
|
| 23 |
+
flake8>=3.9.0 # Code linting
|