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

Ticket #23: setup.py

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.0a1",
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.unittest"],
26       # download_url="TODO"
27 )
28

Hosted by WebFaction

Log in as guest/cpguest to create tickets