-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
52 lines (49 loc) · 1.89 KB
/
setup.py
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
from setuptools import setup, find_packages
from os import path
import libcobblersignatures
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setup(
name="libcobblersignatures",
version=libcobblersignatures.__version__,
description="This library manages the operating system distribution signatures to enable cobbler to detect it "
"correctly.",
long_description=long_description,
long_description_content_type="text/markdown", # Optional (see note above)
url="https://cobbler.github.io/",
author="Cobbler",
author_email="[email protected]",
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",
],
keywords="cobbler",
packages=find_packages(exclude="tests"),
package_data={"libcobblersignatures.data": ["*.json"]},
python_requires=">=3",
install_requires=["questionary", "importlib_resources;python_version=='3.6'"],
extras_require={
"lint": ["pylint", "black"],
"test": ["coverage", "pytest"],
"docs": ["sphinx_rtd_theme"],
"changelog": ["towncrier>=22.8.0"],
},
entry_points={
"console_scripts": [
"cobbler-manage-signatures=libcobblersignatures.cli:main",
],
},
project_urls={
"Bug Reports": "https://github.com/cobbler/cobbler/issues",
"Source": "https://github.com/cobbler/cobbler",
},
)