paperless-ngx/Pipfile

71 lines
1.6 KiB
Text
Raw Normal View History

2018-02-25 15:57:32 +00:00
[[source]]
url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"
[[source]]
url = "https://www.piwheels.org/simple"
verify_ssl = true
name = "piwheels"
2018-02-25 15:57:32 +00:00
[packages]
dateparser = "~=1.1"
django = "~=4.0"
2019-08-05 20:48:53 +02:00
django-cors-headers = "*"
2020-11-20 11:28:19 +01:00
django-extensions = "*"
django-filter = "~=22.1"
django-q = {editable = true, ref = "paperless-main", git = "https://github.com/paperless-ngx/django-q.git"}
djangorestframework = "~=3.13"
2020-12-08 13:54:35 +01:00
filelock = "*"
2021-02-02 20:43:07 +01:00
fuzzywuzzy = {extras = ["speedup"], version = "*"}
2021-01-27 19:11:18 +01:00
gunicorn = "*"
2022-05-10 11:20:00 -07:00
imap-tools = "*"
2019-08-05 20:48:53 +02:00
langdetect = "*"
2020-11-20 11:28:19 +01:00
pathvalidate = "*"
pillow = "~=9.2"
2022-08-10 08:24:12 -07:00
pikepdf = "~=5.4"
2020-11-20 11:28:19 +01:00
python-gnupg = "*"
python-dotenv = "*"
2019-08-05 20:48:53 +02:00
python-dateutil = "*"
2020-11-20 11:28:19 +01:00
python-magic = "*"
psycopg2 = "*"
redis = "*"
scikit-learn="~=1.1"
whitenoise = "~=6.2.0"
watchdog = "~=2.1.9"
2020-11-20 11:28:19 +01:00
whoosh="~=2.7.4"
inotifyrecursive = "~=0.3"
2022-08-10 08:24:12 -07:00
ocrmypdf = "~=13.7"
2020-12-03 01:01:49 +01:00
tqdm = "*"
tika = "*"
2021-01-28 12:43:27 +01:00
# TODO: This will sadly also install daphne+dependencies,
# which an ASGI server we don't need. Adds about 15MB image size.
channels = "~=3.0"
channels-redis = "*"
2021-01-27 19:57:04 +01:00
uvicorn = {extras = ["standard"], version = "*"}
2021-02-06 17:05:07 +01:00
concurrent-log-handler = "*"
2021-02-21 00:24:33 +01:00
"pdfminer.six" = "*"
"backports.zoneinfo" = {version = "*", markers = "python_version < '3.9'"}
"importlib-resources" = {version = "*", markers = "python_version < '3.9'"}
zipp = {version = "*", markers = "python_version < '3.9'"}
pyzbar = "*"
pdf2image = "*"
2020-10-20 00:29:54 +02:00
[dev-packages]
coveralls = "*"
factory-boy = "*"
2019-08-05 20:48:53 +02:00
pycodestyle = "*"
pytest = "*"
pytest-cov = "*"
pytest-django = "*"
pytest-env = "*"
2020-11-20 11:28:19 +01:00
pytest-sugar = "*"
2019-08-05 20:48:53 +02:00
pytest-xdist = "*"
sphinx = "~=5.0.2"
sphinx_rtd_theme = "*"
2020-11-20 11:28:19 +01:00
tox = "*"
black = "*"
pre-commit = "*"
Feature: Dynamic document storage pathes (#916) * Added devcontainer * Add feature storage pathes * Exclude tests and add versioning * Check escaping * Check escaping * Check quoting * Echo * Escape * Escape : * Double escape \ * Escaping * Remove if * Escape colon * Missing \ * Esacpe : * Escape all * test * Remove sed * Fix exclude * Remove SED command * Add LD_LIBRARY_PATH * Adjusted to v1.7 * Updated test-cases * Remove devcontainer * Removed internal build-file * Run pre-commit * Corrected flak8 error * Adjusted to v1.7 * Updated test-cases * Corrected flak8 error * Adjusted to new plural translations * Small adjustments due to code-review backend * Adjusted line-break * Removed PAPERLESS prefix from settings variables * Corrected style change due to search+replace * First documentation draft * Revert changes to Pipfile * Add sphinx-autobuild with keep-outdated * Revert merge error that results in wrong storage path is evaluated * Adjust styles of generated files ... * Adds additional testing to cover dynamic storage path functionality * Remove unnecessary condition * Add hint to edit storage path dialog * Correct spelling of pathes to paths * Minor documentation tweaks * Minor typo * improving wrapping of filter editor buttons with new storage path button * Update .gitignore * Fix select border radius in non input-groups * Better storage path edit hint * Add note to edit storage path dialog re document_renamer * Add note to bulk edit storage path re document_renamer * Rename FILTER_STORAGE_DIRECTORY to PATH * Fix broken filter rule parsing * Show default storage if unspecified * Remove note re storage path on bulk edit * Add basic validation of filename variables Co-authored-by: Markus Kling <markus@markus-kling.net> Co-authored-by: Trenton Holmes <holmes.trenton@gmail.com> Co-authored-by: Michael Shamoon <4887959+shamoon@users.noreply.github.com> Co-authored-by: Quinn Casey <quinn@quinncasey.com>
2022-05-19 23:42:25 +02:00
sphinx-autobuild = "*"
myst-parser = "*"