-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpyproject.toml
64 lines (53 loc) · 2.1 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools-scm>=8"]
[project]
authors = [{ name = "liu xue yan", email = "[email protected]" }]
description = "An extending constructor of PyYAML: include other YAML files into current YAML document"
name = "pyyaml-include"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"PyYAML~=6.0",
"fsspec>=2021.04.0",
"typing-extensions; python_version<'3.11'",
]
keywords = ["yaml", "PyYAML", "include", "yml"]
license = { text = "GPLv3+" }
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
# "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",
"Programming Language :: Python",
"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",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Markup",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/tanbro/pyyaml-include"
Repository = "https://github.com/tanbro/pyyaml-include.git"
Documentation = "https://pyyaml-include.readthedocs.io/en/latest/"
Issues = "https://github.com/tanbro/pyyaml-include/issues"
Changelog = "https://github.com/tanbro/pyyaml-include/blob/main/CHANGELOG.md"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pyyaml_include = ["yaml_include/py.typed"]
[tool.setuptools_scm]
write_to = "src/yaml_include/_version.py"