summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortavis_rudd <tavis_rudd>2002-03-08 16:21:58 +0000
committertavis_rudd <tavis_rudd>2002-03-08 16:21:58 +0000
commite11bf26fbfd4f7fd047d96b23500d363bb668773 (patch)
tree44d2ac5591bdbfc7320e36007aa19219420c45f9
parent0df7377ee57d6e7d8688b9ed4364ef5cd587662b (diff)
downloadpython-cheetah-e11bf26fbfd4f7fd047d96b23500d363bb668773.tar.gz
*** empty log message ***
-rw-r--r--MANIFEST.in3
-rw-r--r--src/_properties.py8
2 files changed, 8 insertions, 3 deletions
diff --git a/MANIFEST.in b/MANIFEST.in
index 1b381ce..6d083ba 100644
--- a/MANIFEST.in
+++ b/MANIFEST.in
@@ -1,5 +1,6 @@
-include *.py *.cfg TODO CHANGES LICENSE README examples docs
+include *.py *.cfg TODO CHANGES LICENSE README examples docs bin
recursive-include src *
+recursive-include bin *
recursive-include docs *
recursive-include examples *
recursive-exclude src *.pyc *~ *.aux
diff --git a/src/_properties.py b/src/_properties.py
index 818b37a..015ea6f 100644
--- a/src/_properties.py
+++ b/src/_properties.py
@@ -24,9 +24,13 @@ PackageToDirMap = {'%(PackageName)s':'%(PackageDir)s',
}
ManifestTemplates = ['recursive-include %(PackageDir)s *',
'recursive-exclude %(PackageDir)s *.pyc *~ *.aux',
- 'include *.py *.cfg TODO CHANGES LICENSE README examples docs',
+ 'include *.py *.cfg TODO CHANGES LICENSE README bin examples docs',
'recursive-include docs * ',
- 'recursive-exclude docs *~ *.aux',
+ 'recursive-exclude docs *~ *.aux',
+ 'recursive-include bin * ',
+ 'recursive-exclude bin *~',
+ 'recursive-include examples * ',
+ 'recursive-exclude examples *~',
]
Scripts = ['bin/cheetah-compile',