-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.13 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.13 KB
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
[project]
name = "lung-cancer-screening"
version = "0.1.0"
description = ""
authors = [{name = "Your Name",email = "you@example.com"}]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.13, <4.0"
dependencies = [
"azure-identity (>=1.23.0,<2.0.0)",
"django (>=6.0.3,<7.0.0)",
"gunicorn (>=23.0.0,<24.0.0)",
"nhsuk-frontend-jinja (>=0.4.1,<0.5.0)",
"psycopg2-binary (>=2.9.10,<3.0.0)",
"python-dateutil (>=2.9.0.post0,<3.0.0)",
"whitenoise (>=6.9.0,<7.0.0)",
"mozilla-django-oidc (>=3.0.0,<4.0.0)",
"pyjwt (>=2.8.0,<3.0.0)",
"cryptography (>=46.0.3)",
"coverage (>=7.13.3,<8.0.0)",
"inflection (>=0.5.1,<0.6.0)",
]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
ruff = "^0.15.9"
playwright = "^1.57.0"
axe-playwright-python = "^0.1.7"
behave-django = "^1.8.0"
factory-boy = "^3.3.3"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.behave]
paths = ["features"]
[tool.coverage.run]
omit = [
"*/migrations/*",
"*/tests/*",
"manage.py"
]
data_file = ".coverage"
[tool.coverage.xml]
output = "coverage.xml"