[Zope3-checkins] CVS: Zope3 - setup.py:1.13

Barry Warsaw barry@wooz.org
Fri, 20 Dec 2002 10:34:43 -0500


Update of /cvs-repository/Zope3
In directory cvs.zope.org:/tmp/cvs-serv12560

Modified Files:
	setup.py 
Log Message:
Add .txt to the list of extensions that need to be copied


=== Zope3/setup.py 1.12 => 1.13 ===
--- Zope3/setup.py:1.12	Thu Dec 19 18:57:10 2002
+++ Zope3/setup.py	Fri Dec 20 10:34:43 2002
@@ -49,8 +49,10 @@
 
 # We have to snoop for file types that distutils doesn't copy correctly when
 # doing a non-build-in-place.
-EXTS = ['.zcml', '.pt', '.gif', '.xml', '.html', '.png',
-        '.css', '.js', '.conf', '.mo']
+EXTS = ['.conf', '.css', '.gif', '.html',
+        '.js',   '.mo',  '.png', '.pt',
+        '.txt',  '.xml', '.zcml',
+        ]
 
 
 class Finder: