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

root/tags/cherrypy-3.1.0beta2/setup.py

Revision 1807 (checked in by fumanchu, 1 year ago)

Bah. Forgot to commit setup.py.

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

Hosted by WebFaction

Log in as guest/cpguest to create tickets