generated from nationalarchives/django-application-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (39 loc) · 1.04 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
[tool.poetry]
name = "tna-django-application"
version = "0.1.0"
description = ""
authors = ["Andrew Hosgood <[email protected]>"]
readme = "README.md"
packages = [{include = "app"}]
[tool.poetry.dependencies]
python = "^3.12"
django = "^5.0.7"
django-csp = "^3.8"
# Using dj-database-url for the temporary Heroku dev environment
dj-database-url = "^2.3.0"
psycopg2-binary = "^2.9.9"
requests = "^2.31.0"
tna-frontend-jinja = "0.2.18"
whitenoise = "^6.7.0"
# Group for dev dependencies used in developer environments & dev container
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
factory-boy = "^3.3.3"
pytest = "^8.1.1"
requests-mock = "^1.12.1"
# Group for dev dependencies used in app container
[tool.poetry.group.dev-app]
optional = true
[tool.poetry.group.dev-app.dependencies]
django-debug-toolbar = "^5.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 80
include = '\.pyi?$'
[tool.pytest.ini_options]
testpaths = [
"test",
]