From 6dbab99f393ebde6e0a8ff7a228b79bcc825b5dc Mon Sep 17 00:00:00 2001 From: MinRK Date: Wed, 19 Jun 2013 09:25:47 -0400 Subject: [PATCH] remove a few dangling frontends from setupbase --- setupbase.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setupbase.py b/setupbase.py index 218d5cb1b0a..fd270a58fa6 100644 --- a/setupbase.py +++ b/setupbase.py @@ -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 = [] @@ -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 @@ -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',