-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (48 loc) · 1.3 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (48 loc) · 1.3 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
[project]
name = "jinja2-cli"
version = "1.0.1"
description = "The CLI for Jinja2"
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
authors = [{ name = "Matt Robenolt", email = "m@robenolt.com" }]
dependencies = ["jinja2>=3.1"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
[project.urls]
Homepage = "https://github.com/mattrobenolt/jinja2-cli"
Issues = "https://github.com/mattrobenolt/jinja2-cli/issues"
[project.scripts]
jinja2 = "jinja2cli:main"
[project.optional-dependencies]
yaml = ["pyyaml"]
toml = ["tomli; python_version < '3.11'"]
xml = ["xmltodict"]
hjson = ["hjson"]
json5 = ["json5"]
[dependency-groups]
dev = [
"ansible-core",
"pytest",
"ruff",
"ty",
]
[build-system]
requires = ["uv_build>=0.9.0,<0.10.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "jinja2cli"
module-root = ""
source-include = ["README.md", "LICENSE"]
[tool.ruff]
line-length = 100
target-version = "py37"