From a94983e03548f8ab43f1b320e13d677c5c6d7695 Mon Sep 17 00:00:00 2001 From: MinRK Date: Tue, 29 Oct 2013 17:48:18 -0700 Subject: [PATCH] add `python -m` entry points for everything --- IPython/html/__main__.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 IPython/html/__main__.py diff --git a/IPython/html/__main__.py b/IPython/html/__main__.py new file mode 100644 index 000000000..1898a901d --- /dev/null +++ b/IPython/html/__main__.py @@ -0,0 +1,3 @@ +if __name__ == '__main__': + from IPython.html import notebookapp as app + app.launch_new_instance()