openGJK/Cython/setup.py

15 lines
286 B
Python
Raw Normal View History

2020-05-18 16:54:28 -07:00
from distutils.core import setup, Extension
from Cython.Build import cythonize
exts = Extension(
"openGJKpy",
2020-05-21 06:08:37 -07:00
sources = ["openGJK_cython.pyx", "openGJK.c"],
# extra_compile_args = ['-fopenmp'],
# extra_link_args = ['-fopenmp']
2020-05-18 16:54:28 -07:00
)
setup(ext_modules = cythonize( [exts] ))