| .. | |||||
| Makefile | |||||
| Makefile.nodistutils | |||||
| README.rst | |||||
| Setup.py | |||||
| cheese.pyx | |||||
| cheesefinder.c | |||||
| cheesefinder.h | |||||
| run_cheese.py |
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"]),
]),
)
| .. | |||||
| Makefile | |||||
| Makefile.nodistutils | |||||
| README.rst | |||||
| Setup.py | |||||
| cheese.pyx | |||||
| cheesefinder.c | |||||
| cheesefinder.h | |||||
| run_cheese.py |