Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +20 -4
requirements.txt
CHANGED
|
@@ -1,4 +1,20 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
streamlit==1.34.0
|
| 3 |
+
beautifulsoup4==4.12.3
|
| 4 |
+
requests==2.32.3
|
| 5 |
+
python-dotenv==1.0.1
|
| 6 |
+
lxml==5.2.2
|
| 7 |
+
geopy==2.4.1
|
| 8 |
+
pandas==2.2.2
|
| 9 |
+
|
| 10 |
+
# API client (verify exact package with Deepseek docs)
|
| 11 |
+
deepseek-api==0.2.1 # Example - confirm actual package name
|
| 12 |
+
|
| 13 |
+
# Visualization extras
|
| 14 |
+
folium==0.15.1
|
| 15 |
+
plotly==5.20.0
|
| 16 |
+
streamlit-folium==0.15.1
|
| 17 |
+
|
| 18 |
+
# Development/testing
|
| 19 |
+
pytest==8.2.0
|
| 20 |
+
python-dotenv==1.0.1
|