13 lines
299 B
Python
13 lines
299 B
Python
|
from distutils.core import setup
|
||
|
from distutils.extension import Extension
|
||
|
from Cython.Distutils import build_ext
|
||
|
|
||
|
import numpy
|
||
|
|
||
|
ext = Extension("quadtree", ["quadtree.pyx"],
|
||
|
include_dirs = [numpy.get_include()])
|
||
|
|
||
|
setup(ext_modules=[ext],
|
||
|
cmdclass = {'build_ext': build_ext})
|
||
|
|