Download Install Tutorial Docs FAQ Tools WikiLicense Team IRC Planet Involvement Shop Book

root/tags/cherrypy-2.0.0-beta/setup.py

Revision 96 (checked in by rdelon, 4 years ago)

small fixes for new cpg.response.body iterable type; getting ready for 2.0.0b release

Line 
1 from distutils.core import setup
2
3 import sys
4 # patch distutils if it can't cope with the "classifiers" keyword
5 if sys.version < '2.2.3':
6     from distutils.dist import DistributionMetadata
7     DistributionMetadata.classifiers = None
8     DistributionMetadata.download_url = None
9
10 setup(name="CherryPy",
11       version="2.0.0b",
12       description="Object-Oriented web development framework",
13       long_description="""CherryPy is a pythonic, object-oriented web development framework.""",
14       classifiers=["Development Status :: Alpha",
15                    "Intended Audience :: Developers",
16                    "License :: Freely Distributable",
17                    "Programming Language :: Python",
18                    "Topic :: Internet ",
19                    "Topic :: Software Development :: Libraries :: Application Frameworks",
20                    ],
21       author="CherryPy Team",
22       author_email="team@cherrypy.org",
23       url="http://www.cherrypy.org",
24       license="BSD",
25       packages=["cherrypy", "cherrypy.lib", "cherrypy.lib.filter", "cherrypy.tutorial", "cherrypy.test"],
26       download_url="http://trac.cherrypy.org/cgi-bin/trac.cgi/wiki/CherryPyDownload"
27 )
28
Note: See TracBrowser for help on using the browser.

Hosted by WebFaction

Log in as guest/cpguest to create tickets