-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
104 lines (92 loc) · 2.63 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "kajiki"
version = "1.0.0.dev1"
description = "Fast XML-based template engine with Genshi syntax and Jinja blocks"
readme = "README.rst"
license = "MIT"
requires-python = ">=3.8"
authors = [
{ name = "Rick Copeland", email = "[email protected]" },
{ name = "Nando Florestan", email = "[email protected]" },
{ name = "Alessandro Molina", email = "[email protected]" },
{ name = "Jack Rosenthal", email = "[email protected]" },
]
maintainers = [
{ name = "Jack Rosenthal", email = "[email protected]" },
]
keywords = [
"chameleon",
"engine",
"genshi",
"html",
"jinja",
"jinja2",
"mako",
"template",
"templating",
"xhtml",
"xml",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup :: HTML",
"Topic :: Text Processing :: Markup :: XML",
]
dependencies = [
"linetable",
'importlib_resources; python_version < "3.9"',
]
[project.urls]
Homepage = "https://github.com/jackrosenthal/kajiki"
[tool.hatch.build.targets.sdist]
include = [
"/kajiki",
"/tests",
]
[tool.hatch.envs.hatch-test]
extra-dependencies = [
"TurboGears2 @ git+https://github.com/TurboGears/tg2.git@942335e4de87d36ec7dc480b1e0e41dc01e6f0ff",
]
[[tool.hatch.envs.hatch-test.matrix]]
python = ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.10"]
[tool.hatch.envs.default]
installer = "uv"
python = "3.12"
[tool.hatch.envs.docs]
dependencies = [
"furo",
"sphinx",
]
[tool.hatch.envs.docs.scripts]
build = "sphinx-build -M html docs docs/_build"
[tool.hatch.envs.speedtest]
dependencies = [
"genshi",
]
[tool.hatch.envs.speedtest.scripts]
run = "./speedtest.py"
[tool.hatch.envs.repl]
extra-dependencies = [
"ptpython"
]
[tool.ruff.lint.extend-per-file-ignores]
"tests/*" = ["INP001", "SLF001"]