| import numpy | |
| from Cython.Build import cythonize | |
| from setuptools import Extension, setup | |
| ext = Extension( | |
| "rosa", | |
| ["rosa.pyx"], | |
| include_dirs=[numpy.get_include()], | |
| extra_compile_args=["/O3", "/openmp"], | |
| ) | |
| setup(ext_modules=cythonize([ext], language_level=3)) | |