[Zope-CVS] CVS: Packages/SFTPGateway - setup.py:1.9
Fred L. Drake, Jr.
fred at zope.com
Fri Jan 2 14:38:39 EST 2004
Update of /cvs-repository/Packages/SFTPGateway
In directory cvs.zope.org:/tmp/cvs-serv21146
Modified Files:
setup.py
Log Message:
- one package per line, for readability
- update some comments
=== Packages/SFTPGateway/setup.py 1.8 => 1.9 ===
--- Packages/SFTPGateway/setup.py:1.8 Fri Jan 2 13:50:16 2004
+++ Packages/SFTPGateway/setup.py Fri Jan 2 14:38:38 2004
@@ -83,24 +83,28 @@
# Now we can set ourselves up:
VERSION="1.0b2"
-PACKAGES=["sftpgateway", "sftpgateway.tests",
- "ZConfig", "ZConfig.tests", "ZConfig.tests.library",
- "ZConfig.tests.library.widget", "ZConfig.tests.library.thing",
+PACKAGES=["sftpgateway",
+ "sftpgateway.tests",
+ "ZConfig",
+ "ZConfig.tests",
+ "ZConfig.tests.library",
+ "ZConfig.tests.library.widget",
+ "ZConfig.tests.library.thing",
"ZConfig.components",
- "ZConfig.components.basic", "ZConfig.components.basic.tests",
- "ZConfig.components.logger", "ZConfig.components.logger.tests",
- "zdaemon", "zdaemon.tests"]
+ "ZConfig.components.basic",
+ "ZConfig.components.basic.tests",
+ "ZConfig.components.logger",
+ "ZConfig.components.logger.tests",
+ "zdaemon",
+ "zdaemon.tests"]
DATAFILES=[]
-if os.path.isdir(os.path.join(here, "src", "ZConfig")):
- PACKAGES.extend(["ZConfig", "ZConfig.tests"])
- # XXX We really should list the test support here, but it's not
- # required just to run SFTP Gateway.
+# if os.path.isdir(os.path.join(here, "src", "ZConfig")):
+ # XXX We really need to list the test support here.
# DATAFILES.extend([])
-if os.path.isdir(os.path.join(here, "src", "zdaemon")):
- PACKAGES.extend(["zdaemon", "zdaemon.tests"])
- # Same here, really.
+# if os.path.isdir(os.path.join(here, "src", "zdaemon")):
+ # XXX Same here, really.
# DATAFILES.extend([('zdaemon',
# ['zdaemon/sample.conf',
# 'zdaemon/component.xml',
More information about the Zope-CVS
mailing list