1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
|
"""Installs CherryPy using distutils
Run:
python setup.py install
to install this package.
"""
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import sys
import os
import shutil
required_python_version = '2.3'
###############################################################################
# arguments for the setup command
###############################################################################
name = "CherryPy"
version = "2.2.1"
desc = "Object-Oriented web development framework"
long_desc = "CherryPy is a pythonic, object-oriented web development framework"
classifiers=[
"Development Status :: 5 - Production/Stable",
#"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: Freely Distributable",
"Programming Language :: Python",
"Topic :: Internet ",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
author="CherryPy Team"
author_email="team@cherrypy.org"
url="http://www.cherrypy.org"
cp_license="BSD"
packages=[
"cherrypy", "cherrypy.lib", "cherrypy.lib.filter",
"cherrypy.tutorial", "cherrypy.test", "cherrypy.filters",
]
download_url="http://sourceforge.net/project/showfiles.php?group_id=56099"
data_files=[
('cherrypy/tutorial',
[
'cherrypy/tutorial/tutorial.conf',
'cherrypy/tutorial/README.txt',
'cherrypy/tutorial/pdf_file.pdf',
'cherrypy/tutorial/custom_error.html',
]
),
('cherrypy', ['cherrypy/favicon.ico',]),
('cherrypy/test', ['cherrypy/test/style.css',]),
('cherrypy/test/static', ['cherrypy/test/static/index.html',
'cherrypy/test/static/has space.html',
'cherrypy/test/static/dirback.jpg',]),
]
###############################################################################
# end arguments for setup
###############################################################################
def main():
if sys.version < required_python_version:
s = "I'm sorry, but %s %s requires Python %s or later."
print s % (name, version, required_python_version)
sys.exit(1)
# set default location for "data_files" to platform specific "site-packages"
# location
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
dist = setup(
name=name,
version=version,
description=desc,
long_description=long_desc,
classifiers=classifiers,
author=author,
author_email=author_email,
url=url,
license=cp_license,
packages=packages,
download_url=download_url,
data_files=data_files,
)
if __name__ == "__main__":
main()
|