Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > c754c10bf895f4953d8ea531ee4bae69 > files > 499

python3-cython-0.19.1-4.mga4.x86_64.rpm

from distutils.core import setup
from Cython.Build import cythonize

directives = {
    'optimize.inline_defnode_calls': True
}

setup(
  name = 'benchmarks',
  ext_modules = cythonize("*.py", language_level=3, annotate=True,
                          compiler_directives=directives,
                          exclude="setup.py"),
)