X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=4ead8378607f494e7c019602cb7be7b1d53184fa;hb=refs%2Fheads%2Fremove-xmlrpc;hp=dd378dee9473da67b57090907bf910ac8508c6ff;hpb=741ca9406c276ae75896384df7cf46b720f3fef0;p=plcapi.git diff --git a/setup.py b/setup.py index dd378de..4ead837 100755 --- a/setup.py +++ b/setup.py @@ -5,27 +5,20 @@ # Mark Huang # Copyright (C) 2006 The Trustees of Princeton University # -# $Id$ -# from distutils.core import setup from glob import glob -setup(py_modules = ['ModPython'], - packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'PLC/Legacy'], +setup(packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'aspects'], scripts = ['plcsh', 'Server.py'], data_files = [ ('', ['planetlab5.sql']), + # package for mod_python and mod_wsgi, defer choice to myplc + ('apache', ['apache/ModPython.py', 'apache/__init__.py', 'apache/plc.wsgi']), ('php', ['php/plc_api.php']), ('migrations', ['migrations/README.txt', 'migrations/extract-views.py'] + glob('migrations/[0-9][0-9][0-9]*')), - ('migrations/v42-to-43', - ['migrations/v42-to-43/migrate.sh', - 'migrations/v42-to-43/migrate.sed', - 'migrations/v42-to-43/migrate.sql', - 'migrations/v42-to-43/parse-site-nodegroups.py', - 'migrations/v42-to-43/site-nodegroups.def' - ]), + ('extensions', ['extensions/README.txt']), ])