Fix build error: Update to minimal requirements
Browse files- requirements.txt +4 -27
requirements.txt
CHANGED
|
@@ -1,42 +1,19 @@
|
|
| 1 |
-
#
|
| 2 |
-
# FastAPI + Gradio + Selenium + Async Support
|
| 3 |
-
|
| 4 |
-
# Core Framework
|
| 5 |
fastapi==0.104.1
|
| 6 |
uvicorn[standard]==0.24.0
|
| 7 |
gradio==4.21.0
|
| 8 |
|
| 9 |
-
# Browser Automation
|
| 10 |
selenium==4.15.2
|
| 11 |
-
chromium-driver
|
| 12 |
|
| 13 |
# Async Support
|
| 14 |
aiohttp==3.9.1
|
| 15 |
-
asyncio-mqtt==0.16.1
|
| 16 |
|
| 17 |
# Data Processing
|
| 18 |
requests==2.31.0
|
| 19 |
beautifulsoup4==4.12.2
|
| 20 |
-
lxml==4.9.3
|
| 21 |
Pillow==10.1.0
|
| 22 |
|
| 23 |
-
#
|
| 24 |
-
pandas==2.1.4
|
| 25 |
-
numpy==1.25.2
|
| 26 |
-
|
| 27 |
-
# Utilities
|
| 28 |
python-multipart==0.0.6
|
| 29 |
-
|
| 30 |
-
passlib[bcrypt]==1.7.4
|
| 31 |
-
pydantic==2.5.0
|
| 32 |
-
jinja2==3.1.2
|
| 33 |
-
|
| 34 |
-
# Development
|
| 35 |
-
pytest==7.4.3
|
| 36 |
-
pytest-asyncio==0.21.1
|
| 37 |
-
black==23.11.0
|
| 38 |
-
flake8==6.1.0
|
| 39 |
-
|
| 40 |
-
# System Integration
|
| 41 |
-
psutil==5.9.6
|
| 42 |
-
watchdog==3.0.0
|
|
|
|
| 1 |
+
# Core Framework (matching HuggingFace Spaces base)
|
|
|
|
|
|
|
|
|
|
| 2 |
fastapi==0.104.1
|
| 3 |
uvicorn[standard]==0.24.0
|
| 4 |
gradio==4.21.0
|
| 5 |
|
| 6 |
+
# Browser Automation (simplified)
|
| 7 |
selenium==4.15.2
|
|
|
|
| 8 |
|
| 9 |
# Async Support
|
| 10 |
aiohttp==3.9.1
|
|
|
|
| 11 |
|
| 12 |
# Data Processing
|
| 13 |
requests==2.31.0
|
| 14 |
beautifulsoup4==4.12.2
|
|
|
|
| 15 |
Pillow==10.1.0
|
| 16 |
|
| 17 |
+
# Core utilities
|
|
|
|
|
|
|
|
|
|
|
|
|
| 18 |
python-multipart==0.0.6
|
| 19 |
+
pydantic==2.5.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|