-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (47 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
55 lines (47 loc) · 1.71 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
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "libcobblersignatures"
dynamic = ["version"]
requires-python = ">=3"
dependencies = [
"questionary",
"importlib_resources;python_version=='3.6'",
]
license = { file = "LICENSE" }
authors = [
{ name = "Cobbler", email = "cobbler.project@gmail.com" }
]
keywords = ["cobbler"]
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
description = "This library manages the operating system distribution signatures to enable cobbler to detect it correctly."
readme = {file = "README.md", content-type = "text/markdown"}
[project.urls]
"Homepage" = "https://cobbler.github.io/"
"Documentation" = "https://libcobblersignatures.readthedocs.io/"
"Source" = "https://github.com/cobbler/libcobblersignatures"
"Bug Tracker" = "https://github.com/cobbler/libcobblersignatures/issues"
[project.optional-dependencies]
lint = ["pylint", "black"]
test = ["coverage", "pytest", "pytest-cov"]
docs = ["sphinx_rtd_theme"]
changelog = ["towncrier>=22.8.0"]
[project.scripts]
cobbler-manage-signatures = "libcobblersignatures.cli:main"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
libcobblersignatures = ["data/*.json"]
[tool.setuptools.dynamic]
version = {attr = "libcobblersignatures.__version__"}