add support for migrations with sqlalchemy-migrate
[sfa.git] / setup.py
index fbab6af..d98a1ed 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -26,6 +26,7 @@ scripts = glob("sfa/clientbin/*.py") + \
 
 packages = [
     'sfa', 
+    'sfa/openstack',
     'sfa/trust',
     'sfa/storage',
     'sfa/util', 
@@ -63,8 +64,8 @@ data_files = [ ('/etc/sfa/', [ 'config/aggregates.xml',
                ('/etc/sfatables/matches/', glob('sfatables/matches/*.xml')),
                ('/etc/sfatables/targets/', glob('sfatables/targets/*.xml')),
                ('/etc/init.d/', [ "init.d/%s"%x for x in initscripts ]),
-               ('/usr/share/sfa/', [ 'sfa/storage/sfa.sql' ] ),
                ('/usr/share/sfa/migrations', [ 'sfa/storage/migrations/*' ] ),
+               ('/usr/share/sfa/migrations/versions', [ 'sfa/storage/migrations/versions/*' ] ),
                ('/usr/share/sfa/examples/', glob('sfa/examples/*' ) + [ 'cron.d/sfa.cron' ] ),
               ]