thirdparty/google_appengine/lib/yaml/setup_with_libyaml.py
author Daniel Hans <Daniel.M.Hans@gmail.com>
Wed, 04 Nov 2009 21:37:44 +0100
changeset 3079 c491d96dce2c
parent 109 620f9b141567
permissions -rwxr-xr-x
Fixed 'Register as a student' link problem for GHOP program. Params and new_params in student view are also sub-merged now, so the apply pattern may be used by GHOP student view.


from setup import *

from distutils.core import setup
from distutils.extension import Extension
from Pyrex.Distutils import build_ext

if __name__ == '__main__':

    setup(
        name=NAME,
        version=VERSION,
        description=DESCRIPTION,
        long_description=LONG_DESCRIPTION,
        author=AUTHOR,
        author_email=AUTHOR_EMAIL,
        license=LICENSE,
        platforms=PLATFORMS,
        url=URL,
        download_url=DOWNLOAD_URL,
        classifiers=CLASSIFIERS,

        package_dir={'': 'lib'},
        packages=['yaml'],
        ext_modules=[
            Extension("_yaml", ["ext/_yaml.pyx"], libraries=['yaml']),
        ],

        cmdclass = {'build_ext': build_ext}
    )