X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=f0846cf85e3908a4d04e12b6e8fc35a6ba98de4a;hb=3cdf2e7bfccc337c7d5cdf13c43224973ddbc795;hp=004c6b286d8f483cae88e2d17a434608ae3599fb;hpb=a518dc50241417014a8ab4c0764357f89cdd33bc;p=plcapi.git diff --git a/setup.py b/setup.py index 004c6b2..f0846cf 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ from distutils.core import setup from glob import glob setup(py_modules = ['ModPython'], - packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', ], + packages = ['PLC', 'PLC/Methods', 'PLC/Methods/system', 'PLC/Accessors', 'aspects'], scripts = ['plcsh', 'Server.py'], data_files = [ ('', ['planetlab5.sql']), @@ -22,11 +22,5 @@ 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' - ]), + ('extensions', ['extensions/README.txt']), ])