Commit eaa213c1 authored by Chris McDonough's avatar Chris McDonough

Setup.py file maintenance (addition of ZEO and ZopeUndo modules as well

as pruning of old no longer existing modules).
parent 07f32e69
......@@ -625,13 +625,32 @@ setup(
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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment