OUAREDAEK commited on
Commit
969d445
·
verified ·
1 Parent(s): fad5e6f

Upload requirements.txt with huggingface_hub

Browse files
Files changed (1) hide show
  1. requirements.txt +75 -0
requirements.txt ADDED
@@ -0,0 +1,75 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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