curt-park's picture
Init the space
2cdd41c
raw
history blame contribute delete
249 Bytes
import numpy
def make_ext(modname, pyxfilename):
from distutils.extension import Extension
return Extension(modname, [pyxfilename],
include_dirs=[numpy.get_include()],
extra_compile_args=['-O3'], language='c++')