thirdparty/google_appengine/lib/webob/setup.py
changeset 109 620f9b141567
equal deleted inserted replaced
108:261778de26ff 109:620f9b141567
       
     1 from setuptools import setup, find_packages
       
     2 import sys, os
       
     3 
       
     4 version = '0.9'
       
     5 
       
     6 setup(name='WebOb',
       
     7       version=version,
       
     8       description="WSGI request and response object",
       
     9       long_description="""\
       
    10 WebOb provides wrappers around the WSGI request environment, and an
       
    11 object to help create WSGI responses.
       
    12 
       
    13 The objects map much of the specified behavior of HTTP, including
       
    14 header parsing and accessors for other standard parts of the
       
    15 environment.
       
    16 """,
       
    17       classifiers=[
       
    18         "Development Status :: 4 - Beta",
       
    19         "Framework :: Paste",
       
    20         "Intended Audience :: Developers",
       
    21         "License :: OSI Approved :: MIT License",
       
    22         "Topic :: Internet :: WWW/HTTP :: WSGI",
       
    23         "Topic :: Internet :: WWW/HTTP :: WSGI :: Application",
       
    24       ],
       
    25       keywords='wsgi request web http',
       
    26       author='Ian Bicking',
       
    27       author_email='ianb@colorstudy.com',
       
    28       url='http://pythonpaste.org/webob/',
       
    29       license='MIT',
       
    30       packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
       
    31       include_package_data=True,
       
    32       zip_safe=True,
       
    33       )