From 2fba753bcefdf0b1652e5adb4cc7e1087afcc064 Mon Sep 17 00:00:00 2001 From: Jakub Libosvar Date: Tue, 13 Oct 2015 13:29:01 +0200 Subject: [PATCH] Include alembic versions directory to the package If package is built without access to git metadata, all the migration scripts are not included in the build. We need to explicitly specify to package the scripts. This patch also removes non-existing files from MANIFEST.in Change-Id: I9a2acad13271863ee94de63c2404e8697ea70601 Related-bug: #1505628 --- MANIFEST.in | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 4e527c7fa..593276056 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,11 +2,8 @@ include AUTHORS include README.rst include ChangeLog include LICENSE -include neutron/db/migration/README -include neutron/db/migration/alembic.ini -include neutron/db/migration/alembic_migrations/script.py.mako -include neutron/db/migration/alembic_migrations/versions/README -recursive-include neutron/locale * +include neutron_lbaas/db/migration/alembic_migrations/script.py.mako +recursive-include neutron_lbaas/db/migration/alembic_migrations/versions * exclude .gitignore exclude .gitreview