provided with Cython. The benifit of this method is that it will give the
platform specific compilation options, acting like a stripped down autotools.
+
Basic setup.py
===============
The distutils extension provided with Cython allows you to pass ``.pyx`` files
would be::
from distutils.core import setup
- from distutils.extension import Extension
- from Cython.Distutils import build_ext
+ from Cython.Build import cythonize
setup(
- cmdclass = {'build_ext': build_ext},
- ext_modules = [Extension("example", ["example.pyx"])]
+ ext_modules = cythonize("example.pyx")
)
To understand the :file:`setup.py` more fully look at the official
$ python setup.py build_ext --inplace
+
Cython Files Depending on C Files
===================================
would be::
from distutils.core import setup
+ from Cython.Build import cythonize
from distutils.extension import Extension
- from Cython.Distutils import build_ext
sourcefiles = ['example.pyx', 'helper.c', 'another_helper.c']
+ extensions = [Extension("example", sourcefiles)]
+
setup(
- cmdclass = {'build_ext': build_ext},
- ext_modules = [Extension("example", sourcefiles)]
+ ext_modules = cythonize(extensions)
)
Notice that the files have been given a name, this is not necessary, but it
Multiple Cython Files in a Package
===================================
-TODO
+To automatically compile multiple Cython files without listing all of them
+explicitly, you can use glob patterns::
+
+ setup(
+ ext_modules = cythonize("package/*.pyx")
+ )
+
+You can also use glob patterns in :class:`Extension` objects if you pass
+them through :func:`cythonize`::
+
+ extensions = [Extension("*", "*.pyx")]
+
+ setup(
+ ext_modules = cythonize(extensions)
+ )
+
Distributing Cython modules
============================
+
It is strongly recommended that you distribute the generated ``.c`` files as well
as your Cython sources, so that users can install your module without needing
to have Cython available.
It is also recommended that Cython compilation not be enabled by default in the
-version you distribute. Even if the user has Cython installed, he probably
-doesn't want to use it just to install your module. Also, the version he has
+version you distribute. Even if the user has Cython installed, he/she probably
+doesn't want to use it just to install your module. Also, the installed version
may not be the same one you used, and may not compile your sources correctly.
This simply means that the :file:`setup.py` file that you ship with will just
ext_modules = [Extension("example", ["example.c"])]
)
+This is easy to combine with :func:`cythonize` by changing the file extension
+of the extension module sources::
+
+ from distutils.core import setup
+ from distutils.extension import Extension
+
+ USE_CYTHON = ... # command line option, try-import, ...
+
+ ext = '.pyx' if USE_CYTHON else '.c'
+
+ extensions = [Extension("example", ["example"+ext])]
+
+ if USE_CYTHON:
+ from Cython.Build import cythonize
+ extensions = cythonize(extensions)
+
+ setup(
+ ext_modules = extensions
+ )
+
.. _pyximport:
available to you -- even in the midst of manipulating C data.
-
Cython Hello World
===================
print "Hello World"
-So the first thing to do is rename the file to :file:`helloworld.pyx`. Now we
-need to make the :file:`setup.py`, which is like a python Makefile (for more
-information see :ref:`compilation`). Your :file:`setup.py` should look like::
+Save this code in a file named :file:`helloworld.pyx`. Now we need to create
+the :file:`setup.py`, which is like a python Makefile (for more information
+see :ref:`compilation`). Your :file:`setup.py` should look like::
from distutils.core import setup
- from distutils.extension import Extension
- from Cython.Distutils import build_ext
+ from Cython.Build import cythonize
setup(
- cmdclass = {'build_ext': build_ext},
- ext_modules = [Extension("helloworld", ["helloworld.pyx"])]
+ ext_modules = cythonize("helloworld.pyx")
)
To use this to build your Cython file use the commandline options: