Spaces:
Running
Running
File size: 171 Bytes
b93fa97 |
1 2 3 4 5 6 7 8 9 10 |
from setuptools import setup
from Cython.Build import cythonize
import numpy
setup(
ext_modules=cythonize("utilities.pyx"),
include_dirs=[numpy.get_include()]
)
|