From 343d69750ca0ea153602b779243b929c344ac8d2 Mon Sep 17 00:00:00 2001 From: MinRK Date: Fri, 4 Feb 2011 16:57:12 -0800 Subject: [PATCH] Refactor newparallel to use Config system This is working, but incomplete. --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2d83b9a4a..53f2144f7 100755 --- a/setup.py +++ b/setup.py @@ -215,8 +215,9 @@ if 'setuptools' in sys.modules: 'ipython = IPython.frontend.terminal.ipapp:launch_new_instance', 'ipython-qtconsole = IPython.frontend.qt.console.ipythonqt:main', 'pycolor = IPython.utils.PyColorize:main', - 'ipcontrollerz = IPython.zmq.parallel.controller:main', - 'ipenginez = IPython.zmq.parallel.engine:main', + 'ipcontrollerz = IPython.zmq.parallel.ipcontrollerapp:launch_new_instance', + 'ipenginez = IPython.zmq.parallel.ipengineapp:launch_new_instance', + 'iploggerz = IPython.zmq.parallel.iploggerapp:launch_new_instance', 'ipclusterz = IPython.zmq.parallel.ipcluster:main', 'iptest = IPython.testing.iptest:main', 'irunner = IPython.lib.irunner:main'