-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
256 lines (216 loc) · 9.83 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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
import sys
import traceback
import os
import platform
from setuptools import setup, Extension as _Extension, find_packages
from distutils.command.build_ext import build_ext
from distutils.errors import (CCompilerError, DistutilsExecError,
DistutilsPlatformError)
def has_option(name):
try:
sys.argv.remove('--%s' % name)
return True
except ValueError:
pass
# allow passing all cmd line options also as environment variables
env_val = os.getenv(name.upper().replace('-', '_'), 'false').lower()
if env_val == "true":
return True
return False
# with_openmp = has_option('with-openmp')
no_openmp = has_option('no-openmp')
debug_symbols = has_option("debug")
with_openmp = not no_openmp
include_diagnostics = has_option("include-diagnostics")
force_cythonize = has_option("force-cythonize")
use_python_implementation = has_option("pure-python")
print("Building with OpenMP? %s" % with_openmp)
def configure_openmp(ext):
# http://www.microsoft.com/en-us/download/confirmation.aspx?id=2092 was required.
if os.name == 'nt' and with_openmp:
ext.extra_compile_args.append("/openmp")
elif platform.system() == 'Darwin':
pass
elif with_openmp:
ext.extra_compile_args.append("-fopenmp")
ext.extra_link_args.append("-fopenmp")
def Extension(*args, **kwargs):
ext = _Extension(*args, **kwargs)
if debug_symbols:
if os.name == 'nt':
ext.extra_compile_args.append("-Zi")
ext.extra_compile_args.append("-Ox")
ext.extra_link_args.append("-debug:full")
else:
ext.extra_compile_args.append("-g3")
ext.extra_compile_args.append("-O0")
return ext
def OpenMPExtension(*args, **kwargs):
ext = Extension(*args, **kwargs)
configure_openmp(ext)
return ext
def make_cextensions():
import numpy
macros = []
try:
from Cython.Build import cythonize
cython_directives = {
'embedsignature': True,
"profile": include_diagnostics
}
if include_diagnostics:
macros.append(("CYTHON_TRACE_NOGIL", "1"))
print("Using Directives", cython_directives)
extensions = cythonize([
OpenMPExtension(
name="ms_peak_picker._c.peak_statistics", sources=["src/ms_peak_picker/_c/peak_statistics.pyx"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.peak_set', sources=["src/ms_peak_picker/_c/peak_set.pyx"]),
Extension(name='ms_peak_picker._c.fft_patterson_charge_state',
sources=["src/ms_peak_picker/_c/fft_patterson_charge_state.pyx"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name="ms_peak_picker._c.search", sources=["src/ms_peak_picker/_c/search.pyx"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name="ms_peak_picker._c.peak_index", sources=["src/ms_peak_picker/_c/peak_index.pyx"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.double_vector', sources=["src/ms_peak_picker/_c/double_vector.pyx"]),
Extension(name='ms_peak_picker._c.size_t_vector', sources=[
"src/ms_peak_picker/_c/size_t_vector.pyx"]),
Extension(name='ms_peak_picker._c.interval_t_vector', sources=[
"src/ms_peak_picker/_c/interval_t_vector.pyx"]),
Extension(name='ms_peak_picker._c.smoother', sources=["src/ms_peak_picker/_c/smoother.pyx"],
include_dirs=[numpy.get_include()], define_macros=macros),
OpenMPExtension(name='ms_peak_picker._c.scan_averaging',
sources=['src/ms_peak_picker/_c/scan_averaging.pyx'],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.fticr_denoising', sources=['src/ms_peak_picker/_c/fticr_denoising.pyx'],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name="ms_peak_picker._c.peak_picker", sources=['src/ms_peak_picker/_c/peak_picker.pyx'],
include_dirs=[numpy.get_include()], define_macros=macros),
], compiler_directives=cython_directives, force=force_cythonize)
except ImportError:
extensions = ([
OpenMPExtension(
name="ms_peak_picker._c.peak_statistics", sources=["src/ms_peak_picker/_c/peak_statistics.c"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.peak_set', sources=[
"src/ms_peak_picker/_c/peak_set.c"], define_macros=macros),
Extension(name='ms_peak_picker._c.fft_patterson_charge_state',
sources=["src/ms_peak_picker/_c/fft_patterson_charge_state.c"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name="ms_peak_picker._c.search", sources=["src/ms_peak_picker/_c/search.c"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name="ms_peak_picker._c.peak_index", sources=["src/ms_peak_picker/_c/peak_index.c"],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.double_vector', sources=[
"src/ms_peak_picker/_c/double_vector.c"], define_macros=macros),
Extension(name='ms_peak_picker._c.size_t_vector', sources=[
"src/ms_peak_picker/_c/size_t_vector.c"]),
Extension(name='ms_peak_picker._c.interval_t_vector', sources=[
"src/ms_peak_picker/_c/interval_t_vector.c"]),
Extension(name='ms_peak_picker._c.smoother', sources=["src/ms_peak_picker/_c/smoother.c"],
include_dirs=[numpy.get_include()], define_macros=macros),
OpenMPExtension(name='ms_peak_picker._c.scan_averaging',
sources=['src/ms_peak_picker/_c/scan_averaging.c'],
include_dirs=[numpy.get_include()], define_macros=macros),
Extension(name='ms_peak_picker._c.fticr_denoising', sources=['src/ms_peak_picker/_c/fticr_denoising.c'],
include_dirs=[numpy.get_include()], define_macros=macros)
])
return extensions
ext_errors = (CCompilerError, DistutilsExecError, DistutilsPlatformError)
if sys.platform == 'win32':
# 2.6's distutils.msvc9compiler can raise an IOError when failing to
# find the compiler
ext_errors += (IOError,)
class BuildFailed(Exception):
def __init__(self):
self.cause = sys.exc_info()[1] # work around py 2/3 different syntax
def __str__(self):
return str(self.cause)
class ve_build_ext(build_ext):
# This class allows C extension building to fail.
def run(self):
try:
build_ext.run(self)
except DistutilsPlatformError:
traceback.print_exc()
raise BuildFailed()
def build_extension(self, ext):
try:
build_ext.build_extension(self, ext)
except ext_errors:
traceback.print_exc()
raise BuildFailed()
except ValueError:
# this can happen on Windows 64 bit, see Python issue 7511
traceback.print_exc()
if "'path'" in str(sys.exc_info()[1]): # works with both py 2/3
raise BuildFailed()
raise
cmdclass = {}
cmdclass['build_ext'] = ve_build_ext
def status_msgs(*msgs):
print('*' * 75)
for msg in msgs:
print(msg)
print('*' * 75)
with open("src/ms_peak_picker/version.py") as version_file:
version = None
for line in version_file.readlines():
if "version = " in line:
version = line.split(" = ")[1].replace("\"", "").strip()
print("Version is: %r" % (version,))
break
else:
print("Cannot determine version")
install_requires = [
"numpy>=2.0.0; python_version >= '3.9'",
"numpy; python_version < '3.9'",
"scipy",
"six",
]
def run_setup(include_cext=True):
setup(
name="ms_peak_picker",
description="A library to pick peaks from mass spectral data",
long_description="A library to pick peaks from mass spectral data",
version=version,
packages=find_packages(where="src"),
package_dir={"": "src"},
zip_safe=False,
install_requires=install_requires,
ext_modules=make_cextensions() if include_cext else None,
cmdclass=cmdclass,
author="Joshua Klein",
author_email="[email protected]",
maintainer="Joshua Klein",
maintainer_email="[email protected]",
include_package_data=True,
classifiers=[
"Intended Audience :: Science/Research",
"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 :: Education",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Software Development :: Libraries",
],
license="License :: OSI Approved :: Apache Software License",
)
try:
run_setup(True)
except Exception as exc:
import traceback
traceback.print_exc()
if use_python_implementation:
run_setup(False)
status_msgs(
"WARNING: The C extension could not be compiled, " +
"speedups are not enabled.",
"Plain-Python build succeeded."
)
else:
raise