<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>setuptools_cython</name>
<shortdesc>Cython setuptools integration</shortdesc>
<description>Allows compiling Cython extensions in setuptools
by putting setuptools_cython in your setup_requires.

Usage
=====

Use setuptools, add setuptools_cython to your setup_requires.

Some verbatim code is required to make Extension behave as expected.

Usage example
=============

setup.py::

    #!/usr/bin/env python

    from setuptools import setup
    from distutils.extension import Extension

    # setuptools DWIM monkey-patch madness
    # http://mail.python.org/pipermail/distutils-sig/2007-September/thread.html#8204
    import sys
    if 'setuptools.extension' in sys.modules:
        m = sys.modules['setuptools.extension']
        m.Extension.__dict__ = m._Extension.__dict__

    setup(
            name = "example",
            version = "0.1",
            description="setuptools_cython example",
            setup_requires=[
                'setuptools_cython',
                ],
            ext_modules=[
                Extension('example', ['example.pyx']),
                ],
            )</description>
<homepage rdf:resource="http://pypi.python.org/pypi/setuptools_cython/" />
<maintainer><foaf:Person><foaf:name>Gabriel de Perthuis</foaf:name>
<foaf:mbox_sha1sum>073f5d09a20640f97866955d93f1fa7f2d32690d</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.2.1</revision></Version></release>
</Project></rdf:RDF>