itsjarvis commited on
Commit
cc29c74
·
verified ·
1 Parent(s): 36f6f17

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +35 -0
requirements.txt ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SuperKart Sales Forecasting API Dependencies
2
+ # ==============================================
3
+
4
+ # Core Framework
5
+ Flask==3.0.0
6
+ flask-cors==4.0.0
7
+
8
+ # Machine Learning & Data Processing
9
+ scikit-learn==1.6.1
10
+ xgboost==2.1.4
11
+ pandas==2.2.2
12
+ numpy==2.0.2
13
+
14
+ # Model Serialization
15
+ joblib==1.4.2
16
+
17
+ # Additional Utilities
18
+ scipy==1.14.1
19
+ matplotlib==3.10.0
20
+ seaborn==0.13.2
21
+
22
+ # Production Dependencies
23
+ gunicorn==21.2.0
24
+ werkzeug==3.0.1
25
+
26
+ # Security & Monitoring
27
+ python-dotenv==1.0.0
28
+ requests==2.32.3
29
+
30
+ # Development & Testing (optional)
31
+ pytest==7.4.3
32
+ pytest-flask==1.3.0
33
+
34
+ # Note: These versions are compatible with the model training environment
35
+ # For production deployment, ensure compatibility with your target platform