Changeset 1649
- Timestamp:
- 04/16/07 12:07:41
- Files:
-
- trunk/setup.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/setup.py
r1640 r1649 42 42 "cherrypy.wsgiserver", "cherrypy.restsrv", 43 43 ] 44 download_url="http://download.cherrypy.org/cherrypy/3. 0.1/"44 download_url="http://download.cherrypy.org/cherrypy/3.1alpha/" 45 45 data_files=[ 46 46 ('cherrypy/tutorial', … … 52 52 ] 53 53 ), 54 ('cherrypy', ['cherrypy/favicon.ico',]), 55 ('cherrypy/test', ['cherrypy/test/style.css',]), 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 ]), 56 61 ('cherrypy/test/static', ['cherrypy/test/static/index.html', 57 62 'cherrypy/test/static/dirback.jpg',]), … … 67 72 print s % (name, version, required_python_version) 68 73 sys.exit(1) 69 # set default location for "data_files" to platform specific "site-packages"70 # location74 # set default location for "data_files" to 75 # platform specific "site-packages" location 71 76 for scheme in INSTALL_SCHEMES.values(): 72 77 scheme['data'] = scheme['purelib'] 73 78 74 79 dist = setup( 75 80 name=name,

