-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
59 lines (54 loc) · 1.42 KB
/
pyproject.toml
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[tool.poetry]
name = "prs"
version = "2.5.60"
description = "Planning Referral System corporate application"
authors = ["Ashley Felton <[email protected]>"]
license = "Apache-2.0"
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
django = "4.2.17"
psycopg = { version = "3.2.3", extras = ["binary", "pool"] }
dbca-utils = "2.0.2"
python-dotenv = "1.0.1"
dj-database-url = "2.3.0"
gunicorn = "23.0.0"
django-crispy-forms = "2.3"
django-reversion = "5.1.0"
django-taggit = "6.1.0"
unidecode = "1.3.8"
pillow = "11.0.0"
python-magic = "0.4.27"
lxml = { version = "5.3.0", extras = ["html-clean"] }
xmltodict = "0.14.2"
extract-msg = "0.52.0"
django-extensions = "3.2.3"
webtemplate-dbca = "1.7.2"
mixer = "7.2.2"
geojson = "3.1.0"
typesense = "0.21.0"
"pdfminer.six" = "20240706"
docx2txt = "0.8"
celery = "5.4.0"
django-celery-results = "2.5.1"
pygeopkg = "0.1.3"
whitenoise = {version = "6.8.2", extras = ["brotli"]}
django-crum = "0.7.9"
sentry-sdk = {version = "2.19.2", extras = ["django"]}
crispy-bootstrap5 = "2024.10"
redis = "5.2.1"
xlsxwriter = "3.2.0"
django-storages = { version = "1.14.4", extras = ["azure"] }
[tool.poetry.group.dev.dependencies]
ipython = "^8.30.0"
ipdb = "^0.13.13"
pre-commit = "^4.0.1"
coverage = "^7.6.8"
[tool.ruff]
line-length = 120
indent-width = 4
[tool.ruff.lint]
ignore = ["E265", "E501", "E722"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"