Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +39 -88
requirements.txt
CHANGED
|
@@ -1,89 +1,40 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
huggingface-hub==0.24.7
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
-
nibabel
|
| 36 |
-
nipype
|
| 37 |
-
numpy
|
| 38 |
-
odfpy
|
| 39 |
-
packaging
|
| 40 |
-
pandas
|
| 41 |
-
pathlib
|
| 42 |
-
pdf2image
|
| 43 |
-
pillow
|
| 44 |
-
prov
|
| 45 |
-
pybind11
|
| 46 |
-
pydantic
|
| 47 |
-
pydantic_core
|
| 48 |
-
pydot
|
| 49 |
-
PyMuPDF
|
| 50 |
-
PyMuPDFb
|
| 51 |
-
pyparsing
|
| 52 |
-
PyPDF2
|
| 53 |
-
pytesseract
|
| 54 |
-
python-dateutil
|
| 55 |
-
python-docx
|
| 56 |
-
python-dotenv
|
| 57 |
-
pytz
|
| 58 |
-
pyxnat
|
| 59 |
-
PyYAML
|
| 60 |
-
rdflib
|
| 61 |
-
referencing
|
| 62 |
-
regex
|
| 63 |
-
requests
|
| 64 |
-
rpds-py
|
| 65 |
-
safetensors
|
| 66 |
-
scipy
|
| 67 |
-
sentencepiece
|
| 68 |
-
setuptools
|
| 69 |
-
simple_parsing
|
| 70 |
-
simplejson
|
| 71 |
-
six
|
| 72 |
-
sympy
|
| 73 |
-
spacy
|
| 74 |
-
termcolor
|
| 75 |
-
tika
|
| 76 |
-
tiktoken
|
| 77 |
-
tokenizers
|
| 78 |
-
tqdm
|
| 79 |
-
traits
|
| 80 |
-
transformers
|
| 81 |
-
typing_extensions
|
| 82 |
-
tzdata
|
| 83 |
-
urllib3
|
| 84 |
-
Werkzeug
|
| 85 |
-
waitress
|
| 86 |
-
huggingface-hub
|
| 87 |
-
striprtf
|
| 88 |
-
easyocr
|
| 89 |
-
gunicorn
|
|
|
|
| 1 |
+
# Core Flask stack
|
| 2 |
+
Flask==3.0.3
|
| 3 |
+
Werkzeug==3.0.1
|
| 4 |
+
Jinja2==3.1.3
|
| 5 |
+
itsdangerous==2.2.0
|
| 6 |
+
blinker==1.7.0
|
| 7 |
+
waitress==3.0.0
|
| 8 |
+
gunicorn==21.2.0
|
| 9 |
+
|
| 10 |
+
# File handling
|
| 11 |
+
python-docx==1.1.0
|
| 12 |
+
PyPDF2==3.0.1
|
| 13 |
+
pdf2image==1.17.0
|
| 14 |
+
pillow==10.3.0
|
| 15 |
+
pytesseract==0.3.10
|
| 16 |
+
PyMuPDF==1.24.4
|
| 17 |
+
|
| 18 |
+
# Data processing
|
| 19 |
+
numpy==1.26.4
|
| 20 |
+
pandas==2.2.2
|
| 21 |
+
|
| 22 |
+
# NLP (stable, no build issues)
|
| 23 |
+
spacy==3.7.5
|
| 24 |
+
|
| 25 |
+
# Transformers / LLM
|
| 26 |
+
transformers==4.41.2
|
| 27 |
+
tokenizers==0.19.1
|
| 28 |
+
sentencepiece==0.2.0
|
| 29 |
huggingface-hub==0.24.7
|
| 30 |
+
tiktoken==0.7.0
|
| 31 |
+
safetensors==0.4.3
|
| 32 |
+
|
| 33 |
+
# Utilities
|
| 34 |
+
python-dotenv==1.0.1
|
| 35 |
+
requests==2.32.3
|
| 36 |
+
tqdm==4.66.4
|
| 37 |
+
regex==2024.5.15
|
| 38 |
+
|
| 39 |
+
# OCR (optional but used)
|
| 40 |
+
easyocr==1.7.1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|