OUAREDAEK commited on
Commit
2425d4f
·
verified ·
1 Parent(s): 1495a94

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +38 -58
requirements.txt CHANGED
@@ -1,75 +1,55 @@
1
- # Core
2
- streamlit>=1.28.0
3
- pandas>=2.0.0
 
 
 
 
 
 
 
4
  numpy>=1.24.0
5
- plotly>=5.17.0
6
-
7
- # Data Processing
8
- python-dotenv>=1.0.0
9
- PyYAML>=6.0
10
-
11
- # JSON & Data Handling
12
- jsonschema>=4.19.0
13
- json5>=0.9.14
14
 
15
- # Data Visualization (Web)
16
- altair>=5.0.0
 
 
17
  matplotlib>=3.7.0
18
  seaborn>=0.12.0
19
- bokeh>=3.2.0
20
 
21
- # UI Components & Styling
22
- plotly-express>=0.4.0
23
- streamlit-plotly-events>=0.0.6
24
- streamlit-aggrid>=0.3.4
25
- streamlit-extras>=0.3.0
26
-
27
- # Charts & Graphs
28
- pydeck>=0.8.0
29
- vega-datasets>=0.9.0
30
- chart-studio>=1.1.0
31
- missingno>=0.5.0 # For visualizing missing data
32
-
33
- # Utilities & Helpers
34
  tqdm>=4.65.0
35
- colorama>=0.4.6
36
  rich>=13.0.0
37
-
38
- # Performance
39
- numba>=0.57.0
40
  joblib>=1.3.0
41
 
42
- # Hugging Face Integration
43
- huggingface-hub>=0.19.0
44
- gradio>=3.44.0
45
- datasets>=2.14.0
46
-
47
  # Web & HTTP
 
48
  requests>=2.31.0
49
- aiohttp>=3.8.0
50
  httpx>=0.25.0
 
51
 
 
52
  # Date & Time
53
- python-dateutil>=2.8.0
 
54
  pytz>=2023.3
55
 
56
- # Optional (for PDF/Excel export)
57
- openpyxl>=3.1.0
58
- reportlab>=4.0.0
59
- pdfkit>=1.0.0
60
-
61
- # Testing & Development
62
- pytest>=7.4.0
63
- black>=23.0.0
64
- flake8>=6.0.0
65
- pylint>=3.0.0
66
-
67
- # Deployment
68
- gunicorn>=21.0.0
69
- uvicorn>=0.23.0
70
- watchdog>=3.0.0
71
 
72
- # Version Pinning for Stability
73
- streamlit==1.28.0
74
- pandas==2.1.0
75
- plotly==5.17.0
 
 
1
+ # =========================
2
+ # Web Framework
3
+ # =========================
4
+ flask==2.3.3
5
+ gunicorn==21.2.0
6
+
7
+ # =========================
8
+ # Core Data Science
9
+ # =========================
10
+ pandas==2.1.0
11
  numpy>=1.24.0
 
 
 
 
 
 
 
 
 
12
 
13
+ # =========================
14
+ # Data Visualization
15
+ # =========================
16
+ plotly==5.17.0
17
  matplotlib>=3.7.0
18
  seaborn>=0.12.0
 
19
 
20
+ # =========================
21
+ # Data Processing & Utils
22
+ # =========================
23
+ python-dotenv>=1.0.0
24
+ PyYAML>=6.0.0
25
+ jsonschema>=4.19.0
26
+ json5>=0.9.14
 
 
 
 
 
 
27
  tqdm>=4.65.0
 
28
  rich>=13.0.0
29
+ colorama>=0.4.6
 
 
30
  joblib>=1.3.0
31
 
32
+ # =========================
 
 
 
 
33
  # Web & HTTP
34
+ # =========================
35
  requests>=2.31.0
 
36
  httpx>=0.25.0
37
+ aiohttp>=3.8.0
38
 
39
+ # =========================
40
  # Date & Time
41
+ # =========================
42
+ python-dateutil>=2.8.2
43
  pytz>=2023.3
44
 
45
+ # =========================
46
+ # Hugging Face
47
+ # =========================
48
+ huggingface-hub>=0.20.0
49
+ datasets>=2.14.0
 
 
 
 
 
 
 
 
 
 
50
 
51
+ # =========================
52
+ # Optional Export
53
+ # =========================
54
+ openpyxl>=3.1.2
55
+ reportlab>=4.0.0