##// END OF EJS Templates
Merge pull request #4766 from minrk/entry-points...
Paul Ivanov -
r14040:2fda0145 merge
parent child Browse files
Show More
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.html import notebookapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.kernel.zmq import kernelapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.parallel.apps import ipclusterapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.parallel.apps import ipcontrollerapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.parallel.apps import ipengineapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.parallel.apps import iploggerapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.qt.console import qtconsoleapp as app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.terminal.console import app
3 app.launch_new_instance()
@@ -0,0 +1,3 b''
1 if __name__ == '__main__':
2 from IPython.testing import iptestcontroller
3 iptestcontroller.main()
@@ -76,13 +76,11 b" WINDOWS = os.name == 'nt'"
76 # Paths to the kernel apps
76 # Paths to the kernel apps
77 #-----------------------------------------------------------------------------
77 #-----------------------------------------------------------------------------
78
78
79 cmd = "from IPython.parallel.apps.%s import launch_new_instance; launch_new_instance()"
79 ipcluster_cmd_argv = [sys.executable, "-m", "IPython.parallel.cluster"]
80
80
81 ipcluster_cmd_argv = [sys.executable, "-c", cmd % "ipclusterapp"]
81 ipengine_cmd_argv = [sys.executable, "-m", "IPython.parallel.engine"]
82
82
83 ipengine_cmd_argv = [sys.executable, "-c", cmd % "ipengineapp"]
83 ipcontroller_cmd_argv = [sys.executable, "-m", "IPython.parallel.controller"]
84
85 ipcontroller_cmd_argv = [sys.executable, "-c", cmd % "ipcontrollerapp"]
86
84
87 #-----------------------------------------------------------------------------
85 #-----------------------------------------------------------------------------
88 # Base launchers and errors
86 # Base launchers and errors
General Comments 0
You need to be logged in to leave comments. Login now