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

root/tags/cherrypy-2.1.0-alpha/setup.py

Revision 287 (checked in by lawouach, 3 years ago)

Changed to Status::Stable

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.0",
12       description="Object-Oriented web development framework",
13       long_description="""CherryPy is a pythonic, object-oriented web development framework.""",
14       classifiers=["Development Status :: Stable",
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.lib.filter.sessionfilter", "cherrypy.tutorial", "cherrypy.test"],
26       download_url="http://www.cherrypy.org/wiki/CherryPyDownload",
27 )
28
Note: See TracBrowser for help on using the browser.

Hosted by WebFaction

Log in as guest/cpguest to create tickets