X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=d29222fe583b357ba76bcf35dfa22275458b6d0d;hb=07e6700be3d29807176ef4f61111d31ff2610abb;hp=f192d80ece9f7e71044057335079dac52fb0b777;hpb=8c429c67a509f4817b5c92824b4c6aee9cd304d6;p=plcapi.git diff --git a/setup.py b/setup.py index f192d80..d29222f 100755 --- a/setup.py +++ b/setup.py @@ -5,16 +5,19 @@ # 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/Shortcuts', 'PLC/Legacy'], + 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']), + ])