1from setuptools import setup 2 3version = '1.5.0a0' 4 5testing_extras = ['nose', 'coverage'] 6 7docs_extras = ['Sphinx'] 8 9setup( 10 name='WebOb', 11 version=version, 12 description="WSGI request and response object", 13 long_description="""\ 14WebOb provides wrappers around the WSGI request environment, and an 15object to help create WSGI responses. 16 17The objects map much of the specified behavior of HTTP, including 18header parsing and accessors for other standard parts of the 19environment. 20 21You may install the `in-development version of WebOb 22<https://github.com/Pylons/webob/zipball/master#egg=WebOb-dev>`_ with 23``pip install WebOb==dev`` (or ``easy_install WebOb==dev``). 24 25* `WebOb reference <http://docs.webob.org/en/latest/reference.html>`_ 26* `Bug tracker <https://github.com/Pylons/webob/issues>`_ 27* `Browse source code <https://github.com/Pylons/webob>`_ 28* `Mailing list <http://bit.ly/paste-users>`_ 29* `Release news <http://docs.webob.org/en/latest/news.html>`_ 30* `Detailed changelog <https://github.com/Pylons/webob/commits/master>`_ 31""", 32 classifiers=[ 33 "Development Status :: 6 - Mature", 34 "Intended Audience :: Developers", 35 "License :: OSI Approved :: MIT License", 36 "Topic :: Internet :: WWW/HTTP :: WSGI", 37 "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", 38 "Topic :: Internet :: WWW/HTTP :: WSGI :: Middleware", 39 "Programming Language :: Python :: 2.6", 40 "Programming Language :: Python :: 2.7", 41 "Programming Language :: Python :: 3.2", 42 "Programming Language :: Python :: 3.3", 43 "Programming Language :: Python :: 3.4", 44 "Programming Language :: Python :: Implementation :: CPython", 45 "Programming Language :: Python :: Implementation :: PyPy", 46 ], 47 keywords='wsgi request web http', 48 author='Ian Bicking', 49 author_email='ianb@colorstudy.com', 50 maintainer='Pylons Project', 51 url='http://webob.org/', 52 license='MIT', 53 packages=['webob'], 54 zip_safe=True, 55 test_suite='nose.collector', 56 tests_require=['nose'], 57 extras_require = { 58 'testing':testing_extras, 59 'docs':docs_extras, 60 }, 61) 62