-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
156 lines (127 loc) · 5.84 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
from __future__ import absolute_import, print_function
from setuptools import setup, find_packages, Extension
from setuptools.command.build_ext import build_ext
from numpy.distutils.misc_util import get_numpy_include_dirs
from os import path
from glob import glob
class build_ext_openmp(build_ext):
# https://www.openmp.org/resources/openmp-compilers-tools/
# python setup.py build_ext --help-compiler
openmp_compile_args = {
'msvc': [['/openmp']],
'intel': [['-qopenmp']],
'*': [['-fopenmp'], ['-Xpreprocessor','-fopenmp']],
}
openmp_link_args = openmp_compile_args # ?
def build_extension(self, ext):
compiler = self.compiler.compiler_type.lower()
if compiler.startswith('intel'):
compiler = 'intel'
if compiler not in self.openmp_compile_args:
compiler = '*'
# thanks to @jaimergp (https://github.com/conda-forge/staged-recipes/pull/17766)
# issue: qhull has a mix of c and c++ source files
# gcc warns about passing -std=c++11 for c files, but clang errors out
compile_original = self.compiler._compile
def compile_patched(obj, src, ext, cc_args, extra_postargs, pp_opts):
# remove c++ specific (extra) options for c files
if src.lower().endswith('.c'):
extra_postargs = [arg for arg in extra_postargs if not arg.lower().startswith('-std')]
return compile_original(obj, src, ext, cc_args, extra_postargs, pp_opts)
# monkey patch the _compile method
self.compiler._compile = compile_patched
# store original args
_extra_compile_args = list(ext.extra_compile_args)
_extra_link_args = list(ext.extra_link_args)
# try compiler-specific flag(s) to enable openmp
for compile_args, link_args in zip(self.openmp_compile_args[compiler], self.openmp_link_args[compiler]):
try:
ext.extra_compile_args = _extra_compile_args + compile_args
ext.extra_link_args = _extra_link_args + link_args
return super(build_ext_openmp, self).build_extension(ext)
except:
print(f">>> compiling with '{' '.join(compile_args)}' failed")
print('>>> compiling with OpenMP support failed, re-trying without')
ext.extra_compile_args = _extra_compile_args
ext.extra_link_args = _extra_link_args
return super(build_ext_openmp, self).build_extension(ext)
#------------------------------------------------------------------------------------
# https://stackoverflow.com/a/22866630
# python setup.py sdist -> __file__ is relative path
# python /absolute/path/to/setup.py sdist -> __file__ is absolute path
# python -m build --sdist -> __file__ is absolute path
# cf. https://github.com/mkleehammer/pyodbc/issues/82#issuecomment-231561240
# _dir = path.dirname(__file__)
_dir = '' # assumption: Path(__file__).parent == Path.cwd()
with open(path.join(_dir,'stardist','version.py'), encoding="utf-8") as f:
exec(f.read())
with open(path.join(_dir,'README.md'), encoding="utf-8") as f:
long_description = f.read()
external_root = path.join(_dir, 'stardist', 'lib', 'external')
qhull_root = path.join(external_root, 'qhull_src', 'src')
qhull_src = sorted(glob(path.join(qhull_root, '*', '*.c*')))[::-1]
nanoflann_root = path.join(external_root, 'nanoflann')
clipper_root = path.join(external_root, 'clipper')
clipper_src = sorted(glob(path.join(clipper_root, '*.cpp*')))[::-1]
setup(
name='stardist',
version=__version__,
description='StarDist - Object Detection with Star-convex Shapes',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/stardist/stardist',
author='Uwe Schmidt, Martin Weigert',
author_email='[email protected], [email protected]',
license='BSD-3-Clause',
packages=find_packages(),
python_requires='>=3.6',
cmdclass={'build_ext': build_ext_openmp},
ext_modules=[
Extension(
'stardist.lib.stardist2d',
sources = ['stardist/lib/stardist2d.cpp', 'stardist/lib/utils.cpp'] + clipper_src,
extra_compile_args = ['-std=c++11'],
include_dirs = get_numpy_include_dirs() + [clipper_root, nanoflann_root],
),
Extension(
'stardist.lib.stardist3d',
sources = ['stardist/lib/stardist3d.cpp', 'stardist/lib/stardist3d_impl.cpp', 'stardist/lib/utils.cpp'] + qhull_src,
extra_compile_args = ['-std=c++11'],
include_dirs = get_numpy_include_dirs() + [qhull_root, nanoflann_root],
),
],
package_data={'stardist': [ 'kernels/*.cl', 'data/images/*' ]},
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
install_requires=[
'csbdeep>=0.7.4',
'scikit-image',
'numba',
'imageio',
],
extras_require={
"tf1": ["csbdeep[tf1]>=0.7.4"],
"test": [
"pytest; python_version< '3.7'",
"pytest>=7.2.0; python_version>='3.7'",
],
"bioimageio": ["bioimageio.core>=0.5.0","importlib-metadata"],
},
entry_points = {
'console_scripts': [
'stardist-predict2d = stardist.scripts.predict2d:main',
'stardist-predict3d = stardist.scripts.predict3d:main',
],
}
)