Spaces:
Sleeping
Sleeping
Create requirements.txt
Browse files- requirements.txt +30 -0
requirements.txt
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core dependencies
|
2 |
+
gradio==4.19.2
|
3 |
+
gradio-client==0.10.1
|
4 |
+
pandas==2.2.0
|
5 |
+
numpy==1.26.3
|
6 |
+
typing-extensions==4.9.0
|
7 |
+
python-dotenv==1.0.0
|
8 |
+
|
9 |
+
# API and networking
|
10 |
+
requests==2.31.0
|
11 |
+
aiohttp==3.9.1
|
12 |
+
websockets==12.0
|
13 |
+
|
14 |
+
# Data processing
|
15 |
+
python-dateutil==2.8.2
|
16 |
+
pytz==2024.1
|
17 |
+
|
18 |
+
# UI and formatting
|
19 |
+
markdown==3.5.2
|
20 |
+
pyyaml==6.0.1
|
21 |
+
|
22 |
+
# Development and testing
|
23 |
+
pytest==7.4.4
|
24 |
+
black==24.1.1
|
25 |
+
flake8==7.0.0
|
26 |
+
mypy==1.8.0
|
27 |
+
|
28 |
+
# Optional - for enhanced features
|
29 |
+
plotly==5.18.0 # For additional visualizations
|
30 |
+
scipy==1.12.0 # For statistical calculations
|