-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
51 lines (44 loc) · 1.14 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
from setuptools.command.build_ext import build_ext
import numpy
# Get the numpy include directory.
numpy_include_dir = numpy.get_include()
# Extensions
# pykdtree (kd tree)
pykdtree = Extension(
'utils.libkdtree.pykdtree.kdtree',
sources=[
'utils/libkdtree/pykdtree/kdtree.c',
'utils/libkdtree/pykdtree/_kdtree_core.c'
],
language='c',
extra_compile_args=['-std=c99', '-O3', '-fopenmp'],
extra_link_args=['-lgomp'],
include_dirs=[numpy_include_dir]
)
# triangle hash (efficient mesh intersection)
triangle_hash_module = Extension(
'utils.libmesh.triangle_hash',
sources=[
'utils/libmesh/triangle_hash.pyx'
],
libraries=['m'], # Unix-like specific
include_dirs=[numpy_include_dir]
)
# Gather all extension modules
ext_modules = [
pykdtree,
triangle_hash_module,
]
setup(
ext_modules=cythonize(ext_modules),
include_dirs=[numpy.get_include()],
cmdclass={
'build_ext': build_ext
}
)