-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (34 loc) · 968 Bytes
/
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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.masonry.api"
[tool.poetry]
package-mode = false
name = "dpb"
[tool.poetry.scripts]
server = "gunicorn -b 0.0.0.0:8000 dpb.wsgi"
[tool.poetry.dependencies]
python = "^3.13"
django = "^5"
django-autoslug = "^1.9.9"
django-filer = "^3.3.1"
easy-thumbnails = "^2.10" # Used by the archive app
django-forms-bootstrap = "^3.1.0"
django-markdownify = "^0.9.5"
django-pagedown = "^2.2.1"
requests = "^2.32.3"
django-allauth = {extras = ["socialaccount"], version = "^65.4.1"}
[tool.poetry.group.install.dependencies]
setuptools = "^75.8.0" # setuptools is needed by filer during collectstatic
[tool.poetry.group.runtime.dependencies]
gunicorn = "^23.0.0"
psycopg2-binary = "^2.9.10"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
deptry = "^0.21.0"
[tool.deptry.per_rule_ignores]
DEP002 = [
# Used in templates
"django-markdownify",
"django-forms-bootstrap"
]