Spaces:
Sleeping
Sleeping
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +22 -27
requirements.txt
CHANGED
|
@@ -1,35 +1,30 @@
|
|
| 1 |
-
# SuperKart Sales Forecasting
|
| 2 |
-
# ==============================================
|
| 3 |
|
| 4 |
-
# Core Framework
|
| 5 |
-
|
| 6 |
-
flask-cors==4.0.0
|
| 7 |
|
| 8 |
-
#
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
pandas==2.2.2
|
| 12 |
-
numpy==2.0.2
|
| 13 |
|
| 14 |
-
#
|
| 15 |
-
|
| 16 |
|
| 17 |
-
#
|
| 18 |
-
|
| 19 |
-
matplotlib==3.10.0
|
| 20 |
-
seaborn==0.13.2
|
| 21 |
|
| 22 |
-
#
|
| 23 |
-
|
| 24 |
-
|
|
|
|
| 25 |
|
| 26 |
-
#
|
| 27 |
-
|
| 28 |
-
requests==2.32.3
|
| 29 |
|
| 30 |
-
#
|
| 31 |
-
|
| 32 |
-
|
| 33 |
|
| 34 |
-
#
|
| 35 |
-
|
|
|
|
| 1 |
+
# Frontend Dependencies for SuperKart Sales Forecasting
|
| 2 |
+
# =======================================================
|
| 3 |
|
| 4 |
+
# Core UI Framework
|
| 5 |
+
streamlit>=1.32.0,<2.0.0
|
|
|
|
| 6 |
|
| 7 |
+
# Data Processing & Analysis
|
| 8 |
+
pandas>=2.0.0,<3.0.0
|
| 9 |
+
numpy>=1.24.0,<2.0.0
|
|
|
|
|
|
|
| 10 |
|
| 11 |
+
# Scientific Computing (compatible with Python 3.10)
|
| 12 |
+
scipy>=1.10.0,<1.14.0
|
| 13 |
|
| 14 |
+
# Machine Learning & Statistics
|
| 15 |
+
scikit-learn>=1.3.0,<1.6.0
|
|
|
|
|
|
|
| 16 |
|
| 17 |
+
# Data Visualization
|
| 18 |
+
plotly>=5.15.0,<6.0.0
|
| 19 |
+
matplotlib>=3.7.0,<4.0.0
|
| 20 |
+
seaborn>=0.12.0,<1.0.0
|
| 21 |
|
| 22 |
+
# HTTP Requests
|
| 23 |
+
requests>=2.31.0,<3.0.0
|
|
|
|
| 24 |
|
| 25 |
+
# Additional Utilities
|
| 26 |
+
python-dateutil>=2.8.0,<3.0.0
|
| 27 |
+
pytz>=2023.3
|
| 28 |
|
| 29 |
+
# Optional: Performance enhancements
|
| 30 |
+
pyarrow>=12.0.0,<15.0.0
|