Upload requirements-light.txt with huggingface_hub
Browse files- requirements-light.txt +24 -0
requirements-light.txt
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# AutoSEO Engine - Lightweight Requirements
|
| 2 |
+
|
| 3 |
+
# Core dependencies
|
| 4 |
+
pydantic>=2.0.0
|
| 5 |
+
requests>=2.31.0
|
| 6 |
+
beautifulsoup4>=4.12.0
|
| 7 |
+
lxml>=4.9.0
|
| 8 |
+
sqlalchemy>=2.0.0
|
| 9 |
+
alembic>=1.11.0
|
| 10 |
+
celery>=5.3.0
|
| 11 |
+
redis>=4.5.0
|
| 12 |
+
fastapi>=0.100.0
|
| 13 |
+
uvicorn>=0.23.0
|
| 14 |
+
python-dotenv>=1.0.0
|
| 15 |
+
|
| 16 |
+
# ML/NLP dependencies (lighter versions)
|
| 17 |
+
tiktoken>=0.5.0
|
| 18 |
+
sentence-transformers>=2.2.0
|
| 19 |
+
numpy>=1.24.0
|
| 20 |
+
pandas>=2.0.0
|
| 21 |
+
scikit-learn>=1.3.0
|
| 22 |
+
|
| 23 |
+
# Note: torch and transformers may need special installation on ARM systems
|
| 24 |
+
# They are removed from this lightweight version but can be added separately if needed
|