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-- |
11479 | 1 |
from setuptools import setup, find_packages |
2 |
||
3 |
||
4 |
setup( |
|
5 |
name='pyramid_cubicweb', |
|
11523
8c80344b119e
Set version to 0.1.2
Christophe de Vienne <christophe@unlish.com>
parents:
11520
diff
changeset
|
6 |
version='0.1.2', |
11479 | 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, |
|
11510
2e52647af650
Add requirements
Christophe de Vienne <christophe@unlish.com>
parents:
11479
diff
changeset
|
29 |
install_requires=[ |
2e52647af650
Add requirements
Christophe de Vienne <christophe@unlish.com>
parents:
11479
diff
changeset
|
30 |
'pyramid >= 1.5.0', |
2e52647af650
Add requirements
Christophe de Vienne <christophe@unlish.com>
parents:
11479
diff
changeset
|
31 |
'waitress >= 0.8.9', |
11511
13e0f569684c
Use 'wsgicors' for CORS handling.
Christophe de Vienne <christophe@unlish.com>
parents:
11510
diff
changeset
|
32 |
'cubicweb >= 3.19.3', |
13e0f569684c
Use 'wsgicors' for CORS handling.
Christophe de Vienne <christophe@unlish.com>
parents:
11510
diff
changeset
|
33 |
'wsgicors >= 0.3' |
11510
2e52647af650
Add requirements
Christophe de Vienne <christophe@unlish.com>
parents:
11479
diff
changeset
|
34 |
] |
11479 | 35 |
) |