-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
64 lines (52 loc) · 1.96 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
from setuptools import setup, Extension
from distutils.command.build_ext import build_ext as build_ext_orig
from distutils.sysconfig import get_python_inc
from os.path import join, dirname
from distutils.sysconfig import customize_compiler
import platform
import numba.extending as nbe
inc_dirs = [get_python_inc(), nbe.include_path()]
inc_dirs.append(join(dirname(dirname(__file__)), 'src', 'ckdtree'))
ckdtree_src = ['init.cpp',
'build.cpp',
'query.cpp',
'query_radius.cpp'
]
ckdtree_src = [join('src', 'ckdtree', x) for x in ckdtree_src]
class CTypesExtension(Extension): pass
class build_ext(build_ext_orig):
def build_extension(self, ext):
self._ctypes = isinstance(ext, CTypesExtension)
if self._ctypes:
customize_compiler(self.compiler)
try:
self.compiler.compiler_so.remove("-Wstrict-prototypes")
except (AttributeError, ValueError):
pass
return super().build_extension(ext)
def get_export_symbols(self, ext):
if self._ctypes:
return ext.export_symbols
return super().get_export_symbols(ext)
def get_ext_filename(self, ext_name):
if self._ctypes:
if platform.system() == "Windows":
return ext_name + '.lib'
else:
return ext_name + '.so'
return super().get_ext_filename(ext_name)
if platform.system() == "Windows":
extra_compile_args = ['/O2', '/DKDTREE_COMPILING=1']
else:
extra_compile_args = ['-fPIC', '-shared', '-O3', '-DKDTREE_COMPILING=1']
if platform.system() == "Darwin":
extra_compile_args.append('-std=c++11')
module = CTypesExtension('numba_kdtree._ckdtree',
sources=ckdtree_src,
include_dirs=inc_dirs,
extra_compile_args=extra_compile_args)
setup(
cmdclass={'build_ext': build_ext},
ext_modules=[module],
zip_safe=True,
)