[Zope-Checkins] CVS: Zope - setup.py:1.12

Chris McDonough chrism@zope.com
Tue, 8 Oct 2002 20:22:29 -0400


Update of /cvs-repository/Zope
In directory cvs.zope.org:/tmp/cvs-serv12136

Modified Files:
	setup.py 
Log Message:
Setup.py file maintenance (addition of ZEO and ZopeUndo modules as well
as pruning of old no longer existing modules).


=== Zope/setup.py 1.11 => 1.12 ===
--- Zope/setup.py:1.11	Thu Aug 22 20:57:17 2002
+++ Zope/setup.py	Tue Oct  8 20:22:29 2002
@@ -625,13 +625,32 @@
                   sources=['../Components/initgroups/initgroups.c'])]
 )
 
+# ZopeUndo
+setup(
+    name='ZopeUndo',
+    author=AUTHOR,
+
+    packages=['ZopeUndo', 'ZopeUndo.tests'],
+
+)
+
+# ZEO
+setup(
+    name='ZEO',
+    author=AUTHOR,
+
+    packages=['ZEO', 'ZEO.tests', 'ZEO.zrpc'],
+    data_files=[['ZEO', ['ZEO/*.txt']]],
+
+)
+
 # Other top-level packages (XXX should these be broken out at all?)
 setup(
     name='Top-level',
     author=AUTHOR,
 
-    py_modules=['Globals', 'ImageFile', 'LOG', 'Main', 'dcdb', 'tempfile',
-                'ts_regex', 'xmlrpclib', 'SignalHandler']
+    py_modules=['Globals', 'ImageFile', 'LOG', 'Main', 'dcdb', 'ts_regex',
+                'xmlrpclib',]
 )
 
 # Products base directory