-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
73 lines (67 loc) · 2.05 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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8.0"]
build-backend = "setuptools.build_meta"
[project]
name = "jinjyaml"
authors = [{ name = "liu xue yan", email = "[email protected]" }]
description = "Application specific YAML tag of Jinja2 template"
readme = "README.md"
requires-python = ">=3.8"
keywords = [
"jinja",
"jinja2",
"template",
"template-engine",
"yaml",
"yml",
"yaml-tag",
"PyYAML",
]
license = { text = "BSD-3-Clause" }
classifiers = [
"License :: OSI Approved :: BSD License",
# "Development Status :: 1 - Planning",
# "Development Status :: 2 - Pre-Alpha",
# "Development Status :: 3 - Alpha",
# "Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
# "Development Status :: 6 - Mature",
# "Development Status :: 7 - Inactive",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
"Programming Language :: Python",
]
dependencies = [
"Jinja2>=3.0,<4.0",
"PyYAML>=5.0,<7.0",
"typing-extensions; python_version<'3.11'",
]
dynamic = ["version"]
[project.urls]
homepage = "https://pypi.org/project/jinjyaml/"
documentation = "https://jinjyaml.readthedocs.io/"
repository = "https://github.com/tanbro/jinjyaml"
changelog = "https://github.com/tanbro/jinjyaml/blob/master/CHANGELOG.md"
[dependency-groups]
dev = ["pre-commit", { include-group = "typing" }]
test = ["coverage"]
docs = [
'Sphinx>=7.0.1',
'importlib_metadata;python_version<"3.8"',
'furo',
'linkify-it-py',
'myst-parser',
'sphinx-copybutton',
'sphinx-inline-tabs',
'sphinx_tippy',
]
typing = ["types-PyYAML"]
[tool.setuptools.packages.find]
where = ["src"] # list of folders that contain the packages (["."] by default)
[tool.setuptools.package-data]
pyyaml_include = ["jinjyaml/py.typed"]
[tool.setuptools_scm]
# version_scheme = "guess-next-dev" # guess-next-dev or post-release
write_to = "src/jinjyaml/_version.py"