generated from nationalarchives/django-application-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (37 loc) · 874 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
43
44
45
[tool.poetry]
name = "tna-django-application"
version = "0.1.0"
description = ""
authors = ["Andrew Hosgood <[email protected]>"]
readme = "README.md"
packages = [{include = "app"}]
package-mode = false
[tool.poetry.dependencies]
python = "^3.12"
requests = "^2.31.0"
tna-frontend-jinja = "0.3.0"
django = "^5.0.7"
psycopg2-binary = "^2.9.9"
django-csp = "^3.8"
whitenoise = "^6.7.0"
responses = "^0.25.3"
pyquery = "^2.0.1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^8.1.1"
requests-mock = "^1.12.1"
[tool.poetry.group.root]
optional = true
[tool.poetry.group.root.dependencies]
django-debug-toolbar = "^4.4.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = [
"test",
]