1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
from setuptools import setup, find_packages
version = '0.2'
setup(
name="PasteDeploy",
version=version,
description="Load, configure, and compose WSGI applications and servers",
long_description="""\
This tool provides code to load WSGI applications and servers from
URIs; these URIs can refer to Python Eggs for INI-style configuration
files.
See also the `Subversion repository <http://svn.pythonpaste.org/Paste/Deploy/trunk#egg=Paste-Deploy-%sdev>`_
""" % version,
classifiers=["Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Python Software Foundation License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='web wsgi application server',
author="Ian Bicking",
author_email="ianb@colorstudy.com",
url="http://pythonpaste.org/deploy/paste-deploy.html",
namespace_packages=['paste'],
extras_require={'composit': ['Paste']},
packages=find_packages(exclude='tests'),
zip_safe=True,
)
|