[Zope-CVS] CVS: Products/ExternalEditor - setup.py:1.1 zopeedit.py:1.42

Casey Duncan casey@zope.com
Tue, 1 Apr 2003 12:02:09 -0500


Update of /cvs-repository/Products/ExternalEditor
In directory cvs.zope.org:/tmp/cvs-serv14060

Modified Files:
	zopeedit.py 
Added Files:
	setup.py 
Log Message:
Move setup.py to satisfy distutils
Remove Plugins dependency assertion in zopeedit.py
Add explict package include for Plugins


=== Added File Products/ExternalEditor/setup.py ===
from distutils.core import setup
import py2exe

setup(name='zopeedit', 
      scripts=['zopeedit.py'],
      packages=['Plugins'])


=== Products/ExternalEditor/zopeedit.py 1.41 => 1.42 ===
--- Products/ExternalEditor/zopeedit.py:1.41	Mon Mar 31 17:26:17 2003
+++ Products/ExternalEditor/zopeedit.py	Tue Apr  1 12:01:36 2003
@@ -325,7 +325,6 @@
         if bin is not None:
             # Try to load the plugin for this editor
             try:
-                import Plugins # Just to assert dependancy
                 module = 'Plugins.%s' % bin
                 Plugin = __import__(module, globals(), locals(), 
                                     ('EditorProcess',))