From 012125b0b43e075d72d5905cc993549a985f672c 2010-08-21 02:56:21 From: Fernando Perez Date: 2010-08-21 02:56:21 Subject: [PATCH] Add main ipython script entry point in same location as before. --- diff --git a/IPython/scripts/ipython b/IPython/scripts/ipython new file mode 100755 index 0000000..20095a8 --- /dev/null +++ b/IPython/scripts/ipython @@ -0,0 +1,10 @@ +#!/usr/bin/env python +"""Terminal-based IPython entry point. + +Note: this is identical to IPython/frontend/terminal/scripts/ipython for now. +Once 0.11 is closer to release, we will likely need to reorganize the script +entry points.""" + +from IPython.frontend.terminal.ipapp import launch_new_instance + +launch_new_instance()