Skip to content

Commit

Permalink
remove a few dangling frontends from setupbase
Browse files Browse the repository at this point in the history
  • Loading branch information
minrk committed Jun 27, 2013
1 parent a53b4ab commit 6dbab99
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setupbase.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ def find_package_data():

# walk notebook resources:
cwd = os.getcwd()
os.chdir(os.path.join('IPython', 'frontend', 'html', 'notebook'))
os.chdir(os.path.join('IPython', 'html', 'notebook'))
static_walk = list(os.walk('static'))
os.chdir(cwd)
static_data = []
Expand All @@ -148,8 +148,8 @@ def find_package_data():
'IPython.config.profile' : ['README*', '*/*.py'],
'IPython.testing' : ['*.txt'],
'IPython.testing.plugin' : ['*.txt'],
'IPython.frontend.html.notebook' : ['templates/*'] + static_data,
'IPython.frontend.qt.console' : ['resources/icon/*.svg'],
'IPython.html.notebook' : ['templates/*'] + static_data,
'IPython.qt.console' : ['resources/icon/*.svg'],
}
return package_data

Expand Down Expand Up @@ -312,7 +312,7 @@ def find_scripts(entry_points=False, suffix=''):
"""
if entry_points:
console_scripts = [s % suffix for s in [
'ipython%s = IPython.frontend.terminal.ipapp:launch_new_instance',
'ipython%s = IPython.terminal.ipapp:launch_new_instance',
'pycolor%s = IPython.utils.PyColorize:main',
'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
Expand Down

0 comments on commit 6dbab99

Please sign in to comment.