setup.py
changeset 11479 a070f211b35c
child 11510 2e52647af650
equal deleted inserted replaced
-1:000000000000 11479:a070f211b35c
       
     1 from setuptools import setup, find_packages
       
     2 
       
     3 
       
     4 setup(
       
     5     name='pyramid_cubicweb',
       
     6     version='0.1',
       
     7     description='Integrate CubicWeb with a Pyramid application.',
       
     8     author='Christophe de Vienne',
       
     9     author_email='username: christophe, domain: unlish.com',
       
    10     url='http://bitbucket.com/cdevienne/pyramid_cubicweb',
       
    11     classifiers=[
       
    12         'Development Status :: 3 - Alpha',
       
    13         'Environment :: Web Environment',
       
    14         'Intended Audience :: Developers',
       
    15         'License :: Public Domain',
       
    16         'Natural Language :: English',
       
    17         'Operating System :: OS Independent',
       
    18         'Programming Language :: Python',
       
    19         'Programming Language :: Python :: 2.7',
       
    20         'Programming Language :: Python :: 3',
       
    21         'Framework :: Pylons',
       
    22         'Topic :: Internet :: WWW/HTTP',
       
    23         'Topic :: Internet :: WWW/HTTP :: WSGI',
       
    24         'Topic :: Software Development :: Libraries :: Python Modules',
       
    25     ],
       
    26     packages=find_packages(),
       
    27     include_package_data=True,
       
    28     zip_safe=False,
       
    29     install_requires=[]
       
    30 )