From fe24b4a39684e2792aa49fec214a7f97fb62ec71 Mon Sep 17 00:00:00 2001 From: Matthew Treinish Date: Tue, 30 Sep 2014 14:21:15 -0400 Subject: [PATCH] Add manifest file to include base alembic config This commit adds a manifset file to ensure that the base alembic config file is installed in the correct path. The subunit2sql-db-manage utility depends on that file exisiting in the same dir so it can use it to build on based on the subunit2sql config file. Change-Id: Icc0d97ca1d1b0bd91434a38014902b922a4ff3ba --- MANIFEST.in | 6 ++++++ setup.cfg | 4 ++++ 2 files changed, 10 insertions(+) create mode 100644 MANIFEST.in diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..e6e1186 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,6 @@ +include subunit2sql/migrations/alembic.ini + +exclude .gitreview +exclude .gitignore + +global-exclude *.pyc diff --git a/setup.cfg b/setup.cfg index 6266c61..e4ebc65 100644 --- a/setup.cfg +++ b/setup.cfg @@ -20,6 +20,10 @@ classifier = packages = subunit2sql +[global] +setup-hooks = + pbr.hooks.setup_hook + [entry_points] console_scripts = subunit2sql = subunit2sql.shell:main