blob: 3c1a5a2d3a7536198c5dc0f22efc2db63d11eae0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
# compile with: python setup.py build_ext --inplace
from distutils.core import setup
from Cython.Build import cythonize
import numpy
setup(
ext_modules = cythonize("ml2.pyx"),
include_dirs=[numpy.get_include()]
)
|