Sophie

Sophie

distrib > Mandriva > 2008.1 > x86_64 > by-pkgid > 98d2a8067c38f8ad1c90c28223e6ee59 > files > 116

python-pyrex-0.9.6.4-1mdv2008.1.x86_64.rpm

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

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