X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;ds=sidebyside;f=setup.py;h=b74fb01734b17b84f9dce409b458e5519b37bb53;hb=1a14a3aeb60941f70274d39a2b4329141075c6e1;hp=49ea199f791dde41394f266781d09ee137394bfc;hpb=b31fec14e340c99fd9792d723e8e95b25151af17;p=plcapi.git diff --git a/setup.py b/setup.py index 49ea199..b74fb01 100755 --- a/setup.py +++ b/setup.py @@ -6,13 +6,14 @@ # Copyright (C) 2006 The Trustees of Princeton University # # $Id$ +# $URL$ # from distutils.core import setup from glob import glob setup(py_modules = ['ModPython'], - packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'PLC/Legacy'], + packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'aspects'], scripts = ['plcsh', 'Server.py'], data_files = [ ('', ['planetlab5.sql']), @@ -21,11 +22,4 @@ setup(py_modules = ['ModPython'], ['migrations/README.txt', 'migrations/extract-views.py'] + glob('migrations/[0-9][0-9][0-9]*')), - ('migrations/v42-to-v43', - ['migrations/v42-to-v43/migrate.sh', - 'migrations/v42-to-v43/migrate.sed', - 'migrations/v42-to-v43/migrate.sql', - 'migrations/v42-to-v43/parse-site-nodegroups.py', - 'migrations/v42-to-v43/site-nodegroups.def' - ]), ])