blob: 8690ac64cd68014760c45a8e1aefe15d01558072 (
plain)
1
2
3
4
5
6
7
8
9
10
|
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
setup(
name = 'callback',
ext_modules=cythonize([
Extension("cheese", ["cheese.pyx", "cheesefinder.c"]),
]),
)
|