-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
76 lines (64 loc) · 2.21 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
import setuptools
from configparser import ConfigParser
from pathlib import Path
from pkg_resources import parse_version
assert parse_version(setuptools.__version__) >= parse_version("36.2")
# note: all settings are in settings.ini; edit there, not here
config = ConfigParser(delimiters=["="])
config.read("settings.ini")
cfg = config["LIB"]
cfg_keys = "version description keywords author author_email".split()
expected = (
cfg_keys
+ "lib_name user branch license status min_python audience language".split()
)
statuses = [
"1 - Planning",
"2 - Pre-Alpha",
"3 - Alpha",
"4 - Beta",
"5 - Production/Stable",
"6 - Mature",
"7 - Inactive",
]
py_versions = (
"2.0 2.1 2.2 2.3 2.4 2.5 2.6 2.7 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.7 3.8 3.9 3.10".split()
)
for exp in expected:
assert exp in cfg, f"missing expected setting: {exp}"
setup_cfg = {k: cfg[k] for k in cfg_keys}
requirements = cfg.get("requirements", "").split()
min_python = cfg["min_python"]
comp_version = py_versions[py_versions.index(min_python):]
with open('xdwarf/__init__.py', 'r') as f:
lines = f.readlines()
with open('xdwarf/__init__.py', 'w') as f:
version = cfg["version"]
first_line = f'__version__ = "{version}"\n'
f.write(first_line)
for line in lines[1:]:
f.write(line)
name=cfg["lib_name"]
setuptools.setup(
name=name,
license='GPLv3+',
version=cfg["version"],
classifiers=[
"Development Status :: " + statuses[int(cfg["status"])],
"Intended Audience :: " + cfg["audience"].title(),
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: " + cfg["language"].title(),
]
+ [f"Programming Language :: Python :: {v}" for v in comp_version],
url=f"https://github.com/{cfg['user']}/{name}",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
python_requires=">=" + cfg["min_python"],
long_description=Path("README.md").read_text(encoding="utf-8"),
long_description_content_type="text/markdown",
project_urls={
"Documentation": f"https://github.com/raynardj/{name}",
"Tracker": f"https://github.com/raynardj/{name}/issues",
},
)