-
Notifications
You must be signed in to change notification settings - Fork 216
/
Copy pathsetup.py
175 lines (141 loc) · 5.7 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import os
from pathlib import Path
import shutil
import sys
from packaging.version import Version
from setuptools import Command, Extension, setup
CYTHON_MIN_VERSION = Version("0.29")
# adapted from bottleneck's setup.py
class clean(Command):
user_options = [("all", "a", "")]
def initialize_options(self):
self.all = True
self.delete_dirs = []
self.delete_files = []
for root, dirs, files in os.walk("sksurv"):
root = Path(root)
for d in dirs:
if d == "__pycache__":
self.delete_dirs.append(root / d)
if "__pycache__" in root.name:
continue
for f in (root / x for x in files):
ext = f.suffix
if ext == ".pyc" or ext == ".so":
self.delete_files.append(f)
if ext in (
".c",
".cpp",
):
source_file = f.with_suffix(".pyx")
if source_file.exists():
self.delete_files.append(f)
build_path = Path("build")
if build_path.exists():
self.delete_dirs.append(build_path)
def finalize_options(self):
pass
def run(self):
for delete_dir in self.delete_dirs:
shutil.rmtree(delete_dir)
for delete_file in self.delete_files:
delete_file.unlink()
EXTENSIONS = {
"_binarytrees": {
"sources": ["sksurv/bintrees/_binarytrees.pyx", "sksurv/bintrees/binarytrees.cpp"],
"language": "c++",
},
"_clinical_kernel": {"sources": ["sksurv/kernels/_clinical_kernel.pyx"]},
"_coxph_loss": {"sources": ["sksurv/ensemble/_coxph_loss.pyx"]},
"_prsvm": {"sources": ["sksurv/svm/_prsvm.pyx"]},
"_minlip": {"sources": ["sksurv/svm/_minlip.pyx"]},
"_criterion": {"sources": ["sksurv/tree/_criterion.pyx"]},
"_coxnet": {
"sources": ["sksurv/linear_model/_coxnet.pyx"],
"language": "c++",
"include_dirs": ["sksurv/linear_model/src", "sksurv/linear_model/src/eigen"],
"extra_compile_args": ["-std=c++14"],
},
}
def get_module_from_sources(sources):
for src_path in map(Path, sources):
if src_path.suffix == ".pyx":
return ".".join(src_path.parts[:-1] + (src_path.stem,))
raise ValueError(f"could not find module from sources: {sources!r}")
def _check_cython_version():
message = (
f"Please install Cython with a version >= {CYTHON_MIN_VERSION} in order to build a scikit-learn from source."
)
try:
import Cython
except ModuleNotFoundError:
# Re-raise with more informative error message instead:
raise ModuleNotFoundError(message)
if Version(Cython.__version__) < CYTHON_MIN_VERSION:
message += f" The current version of Cython is {Cython.__version__} installed in {Cython.__path__}."
raise ValueError(message)
def cythonize_extensions(extensions):
"""Check that a recent Cython is available and cythonize extensions"""
_check_cython_version()
from Cython.Build import cythonize
# http://docs.cython.org/en/latest/src/userguide/source_files_and_compilation.html#cythonize-arguments
directives = {"language_level": "3"}
cy_cov = os.environ.get("CYTHON_COVERAGE", False)
macros = [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]
if cy_cov:
directives["linetrace"] = True
macros.append(("CYTHON_TRACE", "1"))
macros.append(("CYTHON_TRACE_NOGIL", "1"))
for ext in extensions:
if ext.define_macros is None:
ext.define_macros = macros
else:
ext.define_macros += macros
return cythonize(extensions, compiler_directives=directives)
def _check_eigen_source():
eigen_src = Path("sksurv/linear_model/src/eigen/Eigen")
if not eigen_src.is_dir():
raise RuntimeError(
f"{eigen_src.resolve()} directory not found. You might have to run 'git submodule update --init'."
)
def get_extensions():
import numpy
numpy_includes = [numpy.get_include()]
_check_eigen_source()
extensions = []
for config in EXTENSIONS.values():
name = get_module_from_sources(config["sources"])
include_dirs = numpy_includes + config.get("include_dirs", [])
extra_compile_args = config.get("extra_compile_args", [])
language = config.get("language", "c")
ext = Extension(
name=name,
sources=config["sources"],
include_dirs=include_dirs,
extra_compile_args=extra_compile_args,
language=language,
)
extensions.append(ext)
# Skip cythonization as we do not want to include the generated
# C/C++ files in the release tarballs as they are not necessarily
# forward compatible with future versions of Python for instance.
if "sdist" not in sys.argv and "clean" not in sys.argv:
extensions = cythonize_extensions(extensions)
return extensions
if __name__ == "__main__":
setup(
ext_modules=get_extensions(),
cmdclass={"clean": clean},
)