Cython: Difference between revisions

Content deleted Content added
Scoder (talk | contribs)
updated build process example
Line 58:
# setup.py
from distutils.core import setup
from distutilsCython.extensionBuild import Extensioncythonize
from Cython.Distutils import build_ext
 
ext_modules = [Extension("hello", ["hello.pyx"])]
 
setup(
name = 'Hello world app',
cmdclass = {'build_ext': build_ext},
ext_modules = ext_modulescythonize("*.pyx")
)
</source>