paperless-ngx/Pipfile

87 lines
2 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.1"
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"
djangorestframework = "~=3.14"
2020-12-08 13:54:35 +01:00
filelock = "*"
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.3"
pikepdf = "*"
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 = "*"
2022-10-31 20:42:44 +01:00
rapidfuzz = "*"
redis = {extras = ["hiredis"], version = "*"}
scikit-learn = "~=1.1"
numpy = "*"
whitenoise = "~=6.2"
watchdog = "~=2.1"
whoosh="~=2.7"
inotifyrecursive = "~=0.3"
ocrmypdf = "~=14.0"
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"
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 = "*"
2022-08-30 14:56:14 -07:00
mysqlclient = "*"
celery = {extras = ["redis"], version = "*"}
django-celery-results = "*"
setproctitle = "*"
nltk = "*"
pdf2image = "*"
flower = "*"
2022-04-29 22:58:11 +02:00
bleach = "*"
#
# Packages locked due to issues (try to check if these are fixed in a release every so often)
#
# Pin this until piwheels is building 1.9 (see https://www.piwheels.org/project/scipy/)
scipy = "==1.8.1"
# Newer versions aren't builting yet (see https://www.piwheels.org/project/cryptography/)
cryptography = "==38.0.1"
2020-10-20 00:29:54 +02:00
# Locked version until https://github.com/django/channels_redis/issues/332
# is resolved
channels-redis = "==3.4.1"
2020-10-20 00:29:54 +02:00
[dev-packages]
coveralls = "*"
factory-boy = "*"
2019-08-05 20:48:53 +02:00
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 = "*"
black = "*"
pre-commit = "*"
imagehash = "*"
2022-11-29 12:49:23 -08:00
mkdocs-material = "*"