setup.py
author Christophe de Vienne <christophe@unlish.com>
Thu, 06 Nov 2014 22:26:16 +0100
changeset 11523 8c80344b119e
parent 11520 9f3b9e610c3d
child 11528 0a7769e583c2
permissions -rw-r--r--
Set version to 0.1.2

from setuptools import setup, find_packages


setup(
    name='pyramid_cubicweb',
    version='0.1.2',
    description='Integrate CubicWeb with a Pyramid application.',
    author='Christophe de Vienne',
    author_email='username: christophe, domain: unlish.com',
    url='http://bitbucket.com/cdevienne/pyramid_cubicweb',
    classifiers=[
        'Development Status :: 3 - Alpha',
        'Environment :: Web Environment',
        'Intended Audience :: Developers',
        'License :: Public Domain',
        'Natural Language :: English',
        'Operating System :: OS Independent',
        'Programming Language :: Python',
        'Programming Language :: Python :: 2.7',
        'Programming Language :: Python :: 3',
        'Framework :: Pylons',
        'Topic :: Internet :: WWW/HTTP',
        'Topic :: Internet :: WWW/HTTP :: WSGI',
        'Topic :: Software Development :: Libraries :: Python Modules',
    ],
    packages=find_packages(),
    include_package_data=True,
    zip_safe=False,
    install_requires=[
        'pyramid >= 1.5.0',
        'waitress >= 0.8.9',
        'cubicweb >= 3.19.3',
        'wsgicors >= 0.3'
    ]
)