| Current Path : /proc/242857/root/opt/alt/python37/share/doc/alt-python37-Cython/Demos/callback/ |
| Current File : //proc/242857/root/opt/alt/python37/share/doc/alt-python37-Cython/Demos/callback/Setup.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"]),
]),
)