|
Revision 452
(checked in by rdelon, 3 years ago)
|
Changing version numbers and ChangeLog? for 2.1.0-beta release
|
| Line | |
|---|
| 1 |
from distutils.core import setup |
|---|
| 2 |
|
|---|
| 3 |
import sys |
|---|
| 4 |
|
|---|
| 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.1.0-beta", |
|---|
| 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 |
|
|---|