Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > 72e0913cefe7683427338e51dd70bbde > files > 205

python-cython-0.11.3-1mdv2009.1.x86_64.rpm

from distutils.core import setup
from distutils.extension import Extension
from Cython.Distutils import build_ext

setup(
  name = 'callback',
  ext_modules=[ 
    Extension("cheese", ["cheese.pyx", "cheesefinder.c"]),
    ],
  cmdclass = {'build_ext': build_ext}
)