Skip to content

Commit

Permalink
Add ipythonx to scripts.
Browse files Browse the repository at this point in the history
  • Loading branch information
gvaroquaux committed Aug 12, 2008
1 parent 227f889 commit 348ed0c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
1 change: 0 additions & 1 deletion IPython/frontend/wx/ipythonx.py
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#!/usr/bin/env python
"""
Entry point for a simple application giving a graphical frontend to
ipython.
Expand Down
11 changes: 11 additions & 0 deletions scripts/ipythonx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""IPythonX -- An enhanced Interactive Python
This script starts the Wx graphical frontend. This is experimental so
far.
"""

from IPython.frontend.wx import ipythonx

ipythonx.main()
5 changes: 3 additions & 2 deletions setupbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,10 @@ def find_packages():
add_package(packages, 'external')
add_package(packages, 'gui')
add_package(packages, 'gui.wx')
add_package(packages, 'frontend')
add_package(packages, 'frontend', tests=True)
add_package(packages, 'frontend._process')
add_package(packages, 'frontend.wx')
add_package(packages, 'frontend.cocoa')
add_package(packages, 'frontend.cocoa', tests=True)
add_package(packages, 'kernel', config=True, tests=True, scripts=True)
add_package(packages, 'kernel.core', config=True, tests=True)
add_package(packages, 'testing', tests=True)
Expand Down Expand Up @@ -185,6 +185,7 @@ def find_scripts():
scripts.append('IPython/kernel/scripts/ipcontroller')
scripts.append('IPython/kernel/scripts/ipcluster')
scripts.append('scripts/ipython')
scripts.append('scripts/ipythonx')
scripts.append('scripts/pycolor')
scripts.append('scripts/irunner')

Expand Down

0 comments on commit 348ed0c

Please sign in to comment.