-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
117 lines (102 loc) · 3.5 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
106
107
108
109
110
111
112
113
114
115
116
117
from pkg_resources import parse_version
from configparser import ConfigParser
import setuptools
from setuptools import Extension
from Cython.Distutils import build_ext
import numpy
# Ensure setuptools is sufficiently up to date
assert parse_version(setuptools.__version__) >= parse_version("36.2")
# Load config from settings.ini
config = ConfigParser(delimiters=["="])
config.read("settings.ini")
cfg = config["DEFAULT"]
# Lazy approach for getting NumPy include path
class get_numpy_include:
"""Returns NumPy's include path with lazy import."""
def __str__(self):
import numpy
return numpy.get_include()
# Example Cython extension module: orthrus._sequence
genome_module = Extension(
"orthrus._sequence", ["orthrus/_sequence.pyx"], include_dirs=[numpy.get_include()]
)
ext_modules = [genome_module]
cmdclass = {"build_ext": build_ext}
# Required keys in settings.ini
cfg_keys = "version description keywords author author_email".split()
expected = (
cfg_keys
+ "lib_name user branch license status min_python audience language".split()
)
for key in expected:
assert key in cfg, f"Missing expected setting: {key}"
# We will map a few fields from config to setup()
setup_cfg = {k: cfg[k] for k in cfg_keys}
# License mapping
licenses = {
"apache2": (
"Apache Software License 2.0",
"OSI Approved :: Apache Software License",
),
"mit": ("MIT License", "OSI Approved :: MIT License"),
"gpl2": (
"GNU General Public License v2",
"OSI Approved :: GNU General Public License v2 (GPLv2)",
),
"gpl3": (
"GNU General Public License v3",
"OSI Approved :: GNU General Public License v3 (GPLv3)",
),
"bsd3": ("BSD License", "OSI Approved :: BSD 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 3.9 3.10".split()
requirements = cfg.get("requirements", "").split()
if cfg.get("pip_requirements"):
requirements += cfg.get("pip_requirements", "").split()
min_python = cfg["min_python"]
lic = licenses.get(cfg["license"].lower(), (cfg["license"], None))
dev_requirements = (cfg.get("dev_requirements") or "").split()
# Construct the setup call
setuptools.setup(
name=cfg["lib_name"],
license=lic[0],
classifiers=[
"Development Status :: " + statuses[int(cfg["status"])],
"Intended Audience :: " + cfg["audience"].title(),
"Natural Language :: " + cfg["language"].title(),
]
+ [
"Programming Language :: Python :: " + ver
for ver in py_versions[py_versions.index(min_python) :]
]
+ (["License :: " + lic[1]] if lic[1] else []),
url=cfg["git_url"],
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=requirements,
extras_require={"dev": dev_requirements},
ext_modules=ext_modules,
cmdclass=cmdclass,
dependency_links=cfg.get("dep_links", "").split(),
python_requires=">=" + cfg["min_python"],
# If you have a README.md, we can set it as the long description:
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
zip_safe=False,
# Optional: console entry points, or nbdev integration
entry_points={
"console_scripts": cfg.get("console_scripts", "").split(),
"nbdev": [f"{cfg.get('lib_path')}={cfg.get('lib_path')}._modidx:d"],
},
# Unpack the fields from the config into setup()
**setup_cfg,
)