Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > 27ea6be4db5c4ab161dbab335782ff77 > files > 168

python-pyrex-0.9.9-6.mga4.noarch.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}
)