-
-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathsetup.py
105 lines (88 loc) · 3.36 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
"""
.. codeauthor:: Tsuyoshi Hombashi <[email protected]>
"""
import os.path
import setuptools
MODULE_NAME = "tcconfig"
REPOSITORY_URL = f"https://github.com/thombashi/{MODULE_NAME:s}"
REQUIREMENT_DIR = "requirements"
ENCODING = "utf8"
pkg_info = {}
def get_release_command_class():
try:
from releasecmd import ReleaseCommand
except ImportError:
return {}
return {"release": ReleaseCommand}
with open(os.path.join(MODULE_NAME, "__version__.py")) as f:
exec(f.read(), pkg_info)
with open("README.rst", encoding=ENCODING) as fp:
long_description = fp.read()
with open(os.path.join("docs", "pages", "introduction", "summary.txt"), encoding=ENCODING) as f:
summary = f.read().strip()
with open(os.path.join(REQUIREMENT_DIR, "requirements.txt")) as f:
install_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "test_requirements.txt")) as f:
tests_requires = [line.strip() for line in f if line.strip()]
with open(os.path.join(REQUIREMENT_DIR, "docs_requirements.txt")) as f:
docs_requires = [line.strip() for line in f if line.strip()]
build_exe_requires = ["pyinstaller>=4.7,<7"]
color_requires = ["Pygments>=2.2.0,<3"]
setuptools.setup(
name=MODULE_NAME,
url=REPOSITORY_URL,
author=pkg_info["__author__"],
author_email=pkg_info["__email__"],
description=summary,
keywords=["network", "traffic control", "tc", "traffic shaping", "docker"],
long_description=long_description,
long_description_content_type="text/x-rst",
license=pkg_info["__license__"],
include_package_data=True,
packages=setuptools.find_packages(exclude=["test*"]),
project_urls={
"Changelog": f"{REPOSITORY_URL:s}/blob/master/CHANGELOG.md",
"Documentation": f"https://{MODULE_NAME:s}.rtfd.io/",
"Source": REPOSITORY_URL,
"Tracker": f"{REPOSITORY_URL:s}/issues",
},
python_requires=">=3.7",
install_requires=install_requires,
extras_require={
"all": color_requires,
"buildexe": build_exe_requires,
"color": color_requires,
"docs": docs_requires,
"test": tests_requires,
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"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",
"Topic :: System :: Operating System Kernels :: Linux",
"Topic :: System :: Networking",
"Topic :: System :: Systems Administration",
"Topic :: Software Development :: Testing",
],
entry_points={
"console_scripts": [
"tcset=tcconfig.tcset:main",
"tcdel=tcconfig.tcdel:main",
"tcshow=tcconfig.tcshow:main",
],
},
cmdclass=get_release_command_class(),
)