WebashalarForML commited on
Commit
fc1fbb2
·
verified ·
1 Parent(s): 4c61702

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +39 -88
requirements.txt CHANGED
@@ -1,89 +1,40 @@
1
- annotated-types
2
- attrs
3
- blinker
4
- cachelib
5
- certifi
6
- charset-normalizer
7
- ci-info
8
- click
9
- colorama
10
- configobj
11
- configparser
12
- defusedxml
13
- docstring_parser
14
- docx
15
- etelemetry
16
- filelock
17
- fire
18
- Flask
19
- Flask-Session
20
- fsspec
21
- gevent
22
- httplib2
 
 
 
 
 
 
23
  huggingface-hub==0.24.7
24
- idna
25
- isodate
26
- itsdangerous
27
- Jinja2
28
- jsonschema
29
- jsonschema-specifications
30
- looseversion
31
- lxml
32
- MarkupSafe
33
- mpmath
34
- networkx
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