##// END OF EJS Templates
Add ipythonx to scripts.
gvaroquaux -
Show More
@@ -0,0 +1,11 b''
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 """IPythonX -- An enhanced Interactive Python
4
5 This script starts the Wx graphical frontend. This is experimental so
6 far.
7 """
8
9 from IPython.frontend.wx import ipythonx
10
11 ipythonx.main()
@@ -1,4 +1,3 b''
1 #!/usr/bin/env python
2 """
1 """
3 Entry point for a simple application giving a graphical frontend to
2 Entry point for a simple application giving a graphical frontend to
4 ipython.
3 ipython.
@@ -107,10 +107,10 b' def find_packages():'
107 add_package(packages, 'external')
107 add_package(packages, 'external')
108 add_package(packages, 'gui')
108 add_package(packages, 'gui')
109 add_package(packages, 'gui.wx')
109 add_package(packages, 'gui.wx')
110 add_package(packages, 'frontend')
110 add_package(packages, 'frontend', tests=True)
111 add_package(packages, 'frontend._process')
111 add_package(packages, 'frontend._process')
112 add_package(packages, 'frontend.wx')
112 add_package(packages, 'frontend.wx')
113 add_package(packages, 'frontend.cocoa')
113 add_package(packages, 'frontend.cocoa', tests=True)
114 add_package(packages, 'kernel', config=True, tests=True, scripts=True)
114 add_package(packages, 'kernel', config=True, tests=True, scripts=True)
115 add_package(packages, 'kernel.core', config=True, tests=True)
115 add_package(packages, 'kernel.core', config=True, tests=True)
116 add_package(packages, 'testing', tests=True)
116 add_package(packages, 'testing', tests=True)
@@ -185,6 +185,7 b' def find_scripts():'
185 scripts.append('IPython/kernel/scripts/ipcontroller')
185 scripts.append('IPython/kernel/scripts/ipcontroller')
186 scripts.append('IPython/kernel/scripts/ipcluster')
186 scripts.append('IPython/kernel/scripts/ipcluster')
187 scripts.append('scripts/ipython')
187 scripts.append('scripts/ipython')
188 scripts.append('scripts/ipythonx')
188 scripts.append('scripts/pycolor')
189 scripts.append('scripts/pycolor')
189 scripts.append('scripts/irunner')
190 scripts.append('scripts/irunner')
190
191
General Comments 0
You need to be logged in to leave comments. Login now