-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements.txt
More file actions
28 lines (23 loc) · 1.2 KB
/
Copy pathrequirements.txt
File metadata and controls
28 lines (23 loc) · 1.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# Requirements for NullifyPDF - Python 3.13 REQUIRED
# PyMuPDF 1.28.0+ ships abi3 wheels (cp310-abi3) that cover Python 3.13 as well
# Update script handles version detection automatically
# UI Framework (compatible with Python 3.13)
PySide6==6.11.1
# PDF Processing (abi3 wheel, compatible with Python 3.13)
PyMuPDF==1.28.0
# NLP & Security Analysis
presidio-analyzer==2.2.364
spacy==3.8.14 # presidio-analyzer 2.2.364 excludes spacy==3.8.14 only for python_version>=3.14; safe on our Python 3.13 target
cryptography==49.0.0
# spaCy language models (pinned to exact versions for reproducibility)
# IMPORTANT: model minor version MUST match the spaCy core minor version
# (spaCy 3.8.x <-> models 3.8.x). The models declare spacy>=3.8.0,<3.9.0.
# These are cached by pip in GitHub Actions, significantly speeding up CI/CD
en-core-web-md @ https://github.com/explosion/spacy-models/releases/download/en_core_web_md-3.8.0/en_core_web_md-3.8.0-py3-none-any.whl
it-core-news-md @ https://github.com/explosion/spacy-models/releases/download/it_core_news_md-3.8.0/it_core_news_md-3.8.0-py3-none-any.whl
# Build Tool (compatible with Python 3.13)
pyinstaller==6.21.0
# Development Tools
isort==5.13.2
pytest==9.1.1
mypy==1.20.2