9 lines
207 B
Python
9 lines
207 B
Python
from setuptools import setup
|
|
from Cython.Build import cythonize
|
|
import numpy
|
|
|
|
setup(
|
|
name='convolve2d_cython',
|
|
ext_modules=cythonize("convolve2d_cython.pyx"),
|
|
include_dirs=[numpy.get_include()]
|
|
) |