generated from co-cddo/domains-django-govuk
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (64 loc) · 1.83 KB
/
pyproject.toml
File metadata and controls
70 lines (64 loc) · 1.83 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "webcaf"
version = "0.1.0"
description = "GOVUK webcaf"
authors = [
{ name = "Cyber and domain protection team" }
]
readme = "README.md"
requires-python = ">=3.12,<4"
dependencies = [
"django (>=5.1.13,<5.2)",
"whitenoise (>=6.9.0,<7.0.0)",
"django-environ (>=0.12.0,<0.13.0)",
"python-dotenv (>=1.1.0,<2.0.0)",
"django-csp (>=4.0,<5.0)",
"govuk-frontend-django (==0.15.1)",
"psycopg[binary] (>=3.2.9,<4.0.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"mozilla-django-oidc (>=4.0.1,<5.0.0)",
"django-multiselectfield (>=1.0.1,<2.0.0)",
"openpyxl (>=3.1.5,<4.0.0)",
"django-simple-history (>=3.10.1,<4.0.0)",
"django-axes (>=8.0.0,<9.0.0)",
"weasyprint (>=66.0,<67.0)",
"sentry-sdk[django] (>=2.8.0,<3.0.0)",
"django-otp (==1.6.1)",
"notifications-python-client (==10.0.1)",
"fonttools (>=4,<5)",
"pypdf (>=6,<7)",
"charset-normalizer (>=3.4.5,<4.0.0)",
]
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.2.0"
isort = "^5.13.2"
flake8 = "^7.0.0"
black = "^24.3.0"
ipdb = "^0.13.13"
web-pdb = "^1.6.2"
types-markdown = "^3.6.0.20240316"
parameterized = "^0.9.0"
mypy = "^1.15.0"
django-stubs = { extras = ["compatible-mypy"], version = "^5.1.3" }
pypdf = "^6.0.0"
playwright = "^1.55.0"
pytest = "^8.4.1"
pytest-playwright = "^0.7.0"
behave = "^1.2.6"
ruamel-yaml = "^0.18.15"
behave-html-formatter = "^0.9.10"
freezegun = "^1.5.5"
[tool.isort]
profile = "black"
[tool.black]
# https://gds-way.cloudapps.digital/manuals/programming-languages/python/python.html#maximum-line-length-of-120-characters
line-length = 120
[tool.mypy]
ignore_missing_imports = true
mypy_path = "."
plugins = ['mypy_django_plugin.main']
[tool.django-stubs]
django_settings_module = "webcaf.settings"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"