Spaces:
Sleeping
Sleeping
File size: 178 Bytes
f82a827 | 1 2 3 4 5 | from distutils.core import setup
from Cython.Build import cythonize
import numpy
setup(name="bbox_cython", ext_modules=cythonize('bbox.pyx'), include_dirs=[numpy.get_include()]) |