X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=f0846cf85e3908a4d04e12b6e8fc35a6ba98de4a;hb=598e1e840b55262fd40c6d1700148e4f0b508065;hp=cfa5c0015f6dbe64b4290010f234aa82e3c7d202;hpb=468e2bdfe1be1b610f9db374219e92e47a7c3b8e;p=plcapi.git diff --git a/setup.py b/setup.py index cfa5c00..f0846cf 100755 --- a/setup.py +++ b/setup.py @@ -6,15 +6,21 @@ # 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/Legacy', 'PLC/Methods/system'], + packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'aspects'], scripts = ['plcsh', 'Server.py'], - data_files = [('', ['planetlab5.sql']), - ('php', ['php/plc_api.php']), - ('migrations', ['migrations/README.txt'] + glob('migrations/[0-9][0-9][0-9]*')), - ]) + data_files = [ + ('', ['planetlab5.sql']), + ('php', ['php/plc_api.php']), + ('migrations', + ['migrations/README.txt', + 'migrations/extract-views.py'] + + glob('migrations/[0-9][0-9][0-9]*')), + ('extensions', ['extensions/README.txt']), + ])