1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
Description: Install missed files
From: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2021-09-28
diff --git a/MANIFEST.in b/MANIFEST.in
new file mode 100644
index 0000000..cf3032d
--- /dev/null
+++ b/MANIFEST.in
@@ -0,0 +1,11 @@
+exclude .gitreview
+global-exclude *.pyc
+
+recursive-include nova *
+graft nova/CA
+graft nova/locale
+graft nova/tests/functional/api_sample_tests/api_samples
+graft nova/tests/live_migration
+graft nova/tests/unit/ssl_cert
+graft nova/wsgi
+
|