forked from LandRegistry/govuk-frontend-jinja
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (40 loc) · 1.08 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "ccs-govuk-frontend-jinja"
dynamic = ["version"]
dependencies = [
'jinja2>=3.0.2',
]
requires-python = ">=3.11,<3.14"
authors = [
{name = "HM Land Registry Developers"},
{name = "CCS Developers"},
]
description = "GOV.UK Frontend Jinja Macros"
readme = "README.md"
license = {file = "LICENSE"}
[project.urls]
Homepage = "https://github.com/tim-s-ccs/ccs-govuk-frontend-jinja"
Repository = "https://github.com/tim-s-ccs/ccs-govuk-frontend-jinja.git"
Issues = "https://github.com/tim-s-ccs/ccs-govuk-frontend-jinja/issues"
Changelog = "https://github.com/tim-s-ccs/ccs-govuk-frontend-jinja/CHANGELOG.md"
[project.optional-dependencies]
dev = [
'flake8',
'mypy',
'pytest',
'lxml',
'xmldiff',
'flask',
]
[tool.setuptools.dynamic]
version = {attr = "govuk_frontend_jinja.__version__"}
[tool.setuptools.packages.find]
exclude = ["node_modules*"]
[tool.setuptools.package-data]
govuk_frontend_jinja = ["**/*.html"]
[tool.pytest.ini_options]
addopts = "-p no:logging"
testpaths = "tests"