generated from NHSDigital/repository-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
27 lines (22 loc) · 881 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
[project]
name = "manage-breast-screening"
version = "0.1.0"
description = ""
authors = [{ name = "Your Name", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
requires-python = ">=3.13"
dependencies = ["django (>=5.1.7,<6.0.0)", "dotenv (>=0.9.9,<0.10.0)", "gunicorn (>=23.0.0,<24.0.0)", "jinja2 (>=3.1.6,<4.0.0)", "whitenoise[brotli] (>=6.9.0,<7.0.0)", "nhsuk-frontend-jinja @ git+https://github.com/NHSDigital/[email protected]"]
[tool.poetry]
package-mode = false
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-django = "^4.11.1"
factory-boy = "^3.3.3"
time-machine = "^2.16.0"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "manage_breast_screening.config.settings"
python_files = "tests.py test_*.py *_tests.py"