| 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.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 |
|
|---|
| 27 |
) |
|---|
| 28 |
|
|---|