-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
97 lines (84 loc) · 2.82 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
from pkg_resources import parse_version
from configparser import ConfigParser
import setuptools
import os
assert parse_version(setuptools.__version__) >= parse_version("36.2")
PATH_ROOT = os.path.dirname(__file__)
def load_requirements(
path_dir=PATH_ROOT, file_name="requirements.txt", comment_char="#"
):
with open(os.path.join(path_dir, file_name),
"r", encoding="utf-8",
errors="ignore") as file:
lines = [ln.strip() for ln in file.readlines()]
reqs = []
for ln in lines:
if comment_char in ln: # filer all comments
ln = ln[: ln.index(comment_char)].strip()
if ln.startswith("http"): # skip directly installed dependencies
continue
if ln: # if requirement is not empty
reqs.append(ln)
return reqs
def load_long_description():
text = open("README.md", encoding="utf-8", errors="ignore").read()
# replace relative repository path to absolute link to the release
# text = text.replace('](docs', f']({url}')
# SVG images are not readable on PyPI, so replace them with PNG
text = text.replace(".svg", ".png")
return text
# note: all settings are in settings.ini; edit there, not here
config = ConfigParser(delimiters=["="])
config.read("settings.ini")
cfg = config["DEFAULT"]
cfg_keys = "version description keywords author author_email".split()
expected = (
cfg_keys
+ "lib_name user branch license status min_python audience language".split()
)
for o in expected:
assert o in cfg, "missing expected setting: {}".format(o)
setup_cfg = {o: cfg[o] for o in cfg_keys}
licenses = {
"mit": (
"MIT License",
"OSI Approved :: MIT License",
),
}
statuses = [
"1 - Planning",
"2 - Pre-Alpha",
"3 - Alpha",
"4 - Beta",
"5 - Production/Stable",
"6 - Mature",
"7 - Inactive",
]
py_versions = "3.6 3.7 3.8".split()
lic = licenses[cfg["license"]]
min_python = cfg["min_python"]
setuptools.setup(
name=cfg["lib_name"],
license=lic[0],
classifiers=[
"Development Status :: " + statuses[int(cfg["status"])],
"Intended Audience :: " + cfg["audience"].title(),
"License :: " + lic[1],
"Natural Language :: " + cfg["language"].title(),
]
+ [
"Programming Language :: Python :: " + o
for o in py_versions[py_versions.index(min_python):]
],
url=cfg["git_url"],
packages=setuptools.find_packages(exclude=["tests", "docs"]),
include_package_data=True,
install_requires=load_requirements(),
dependency_links=cfg.get("dep_links", "").split(),
python_requires=">=" + cfg["min_python"],
long_description=load_long_description(),
long_description_content_type="text/markdown",
zip_safe=False,
entry_points={"console_scripts": cfg.get("console_scripts", "").split()},
**setup_cfg
)