File size: 171 Bytes
0a7b47e |
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()]
)
|
0a7b47e |
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()]
)
|