4f8d33
# HG changeset patch
4f8d33
# User John Dennis <jdennis@redhat.com>
4f8d33
# Date 1420558515 18000
4f8d33
#      Tue Jan 06 10:35:15 2015 -0500
4f8d33
# Node ID 22895012dc87281141bf15494bb860e68b37ecc6
4f8d33
# Parent  46403a1eb97050a09eb8c4e6adf428c742ab9c5f
4f8d33
fix install_doc manifest, it omitted the run_tests script.
4f8d33
4f8d33
Tighten up the manifest regular expressions.
4f8d33
Exclude the pki directory from doc/examples and test.
4f8d33
4f8d33
diff --git a/setup.py b/setup.py
4f8d33
--- a/setup.py
4f8d33
+++ b/setup.py
4f8d33
@@ -21,9 +21,11 @@
4f8d33
 
4f8d33
 doc_manifest = [
4f8d33
     [['include README LICENSE* doc/ChangeLog',
4f8d33
-      'recursive-include doc *.py *.txt',],
4f8d33
+      'recursive-include doc *.py *.txt',
4f8d33
+      'prune doc/examples/pki'],
4f8d33
      [('^doc/', '')], None],
4f8d33
-    [['recursive-include test *.py *.txt',],
4f8d33
+    [['recursive-include test run_tests setup_certs.py test_*.py util.py *.txt',
4f8d33
+      'prune test/pki'],
4f8d33
      None , None],
4f8d33
     [['recursive-include lib *.py *.txt',],
4f8d33
      [('^lib/', '')] , 'examples'],