summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <cheimes@redhat.com>2015-10-27 13:18:29 +0100
committerSimo Sorce <simo@redhat.com>2015-10-27 15:03:03 -0400
commit9a43974618ece5ab100482e4c9068fc2917c408a (patch)
tree04a440b9a8b6d64dcbe16a2fb0259e89f08ace88
parentcfa5aff186fe0e321d8fe1c191834d157a5e8162 (diff)
downloadcustodia-9a43974618ece5ab100482e4c9068fc2917c408a.tar.gz
custodia-9a43974618ece5ab100482e4c9068fc2917c408a.tar.xz
custodia-9a43974618ece5ab100482e4c9068fc2917c408a.zip
Don't install tests
setup.py no longer installs Custodia's tests files. The test cases are only shipped in the source distribution. Signed-off-by: Christian Heimes <cheimes@redhat.com> Reviewed-by: Simo Sorce <simo@redhat.com>
-rw-r--r--MANIFEST.in2
-rwxr-xr-xsetup.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 21b909d..757b22f 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,3 +1,5 @@
include *py *.md *.txt *.ini .coveragerc
+include Makefile
recursive-include examples *.key *.db
recursive-include docs *.py *.rst
+recursive-include tests *.py
diff --git a/setup.py b/setup.py
index 666227d..bda7db2 100755
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ setup(
maintainer_email='simo@redhat.com',
url='https://github.com/simo5/custodia',
packages=['custodia', 'custodia.httpd', 'custodia.store',
- 'custodia.message', 'tests'],
+ 'custodia.message'],
data_files=[('share/man/man7', ["man/custodia.7"]),
('share/doc/custodia', ['LICENSE', 'README', 'API.md']),
('share/doc/custodia/examples', ['custodia.conf']),