Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +27 -1
requirements.txt
CHANGED
@@ -1 +1,27 @@
|
|
1 |
-
huggingface_hub==0.25.2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
huggingface_hub==0.25.2
|
2 |
+
# Core dependencies
|
3 |
+
gradio>=4.0.0
|
4 |
+
pandas>=2.0.0
|
5 |
+
google-generativeai>=0.3.0
|
6 |
+
python-dotenv>=1.0.0
|
7 |
+
|
8 |
+
# Machine Learning
|
9 |
+
joblib>=1.3.0
|
10 |
+
scikit-learn>=1.2.0
|
11 |
+
xgboost>=2.0.0
|
12 |
+
|
13 |
+
# Data Processing
|
14 |
+
openpyxl>=3.1.0 # For Excel file support
|
15 |
+
numpy>=1.24.0
|
16 |
+
|
17 |
+
# Visualization
|
18 |
+
plotly>=5.18.0
|
19 |
+
kaleido>=0.2.1 # Required for saving plotly figures
|
20 |
+
|
21 |
+
# PDF Generation
|
22 |
+
reportlab>=4.0.0
|
23 |
+
|
24 |
+
# Optional: Development Tools
|
25 |
+
black>=23.0.0 # Code formatting
|
26 |
+
pytest>=7.0.0 # Testing
|
27 |
+
pylint>=3.0.0 # Code analysis
|