Cleared file executable bit that was set earlier by a mistake
[cython.git] / Demos / callback / Setup.py
1 from distutils.core import setup
2 from distutils.extension import Extension
3 from Cython.Distutils import build_ext
4
5 setup(
6   name = 'callback',
7   ext_modules=[ 
8     Extension("cheese", ["cheese.pyx", "cheesefinder.c"]),
9     ],
10   cmdclass = {'build_ext': build_ext}
11 )