aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorErik Skultety <eskultet@redhat.com>2023-03-10 14:22:37 +0100
committerErik Skultety <eskultet@redhat.com>2023-03-14 15:50:40 +0100
commit36c89141ce3932e3551d16ca0ae63a56a680bdc8 (patch)
tree8200754e22be30c27d617d23ee8af9826d16ac51
parentf0cc11e3f13e51518fec0ba6857a8fcba03b8e88 (diff)
downloadlibvirt-ci-36c89141ce3932e3551d16ca0ae63a56a680bdc8.zip
libvirt-ci-36c89141ce3932e3551d16ca0ae63a56a680bdc8.tar.gz
libvirt-ci-36c89141ce3932e3551d16ca0ae63a56a680bdc8.tar.bz2
Add MANIFEST.in
Everything that we want included will be included by default by means of pyproject.toml, but we there are files we don't want to distribute, e.g CI-related files, hidden repo files, etc. Signed-off-by: Erik Skultety <eskultet@redhat.com>
-rw-r--r--MANIFEST.in9
1 files changed, 9 insertions, 0 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..489a8a8
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,9 @@
+prune bin # don't include bin/lcitool in the distribution
+prune containers # don't include CI stuff in the distribution
+
+recursive-include docs *
+recursive-include examples *
+recursive-include tests *
+
+exclude *requirements.txt # all requirements are specified in pyproject.toml
+exclude .* # don't include any of the hidden repo files