X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=setup.py;h=f0846cf85e3908a4d04e12b6e8fc35a6ba98de4a;hb=8ebeada1eebab2cd38615b8b13134189d9c42003;hp=a8bd7a202fc717fbea51feb81e5ef217b911e28f;hpb=1fe505c2263ccc9bcb9b9235984edec6fdd23b55;p=plcapi.git diff --git a/setup.py b/setup.py index a8bd7a2..f0846cf 100755 --- a/setup.py +++ b/setup.py @@ -1,4 +1,4 @@ -n#!/usr/bin/python +#!/usr/bin/python # # Setup script for PLCAPI # @@ -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']), ])