##// END OF EJS Templates
remove a few dangling frontends from setupbase
MinRK -
Show More
@@ -134,7 +134,7 b' def find_package_data():'
134
134
135 # walk notebook resources:
135 # walk notebook resources:
136 cwd = os.getcwd()
136 cwd = os.getcwd()
137 os.chdir(os.path.join('IPython', 'frontend', 'html', 'notebook'))
137 os.chdir(os.path.join('IPython', 'html', 'notebook'))
138 static_walk = list(os.walk('static'))
138 static_walk = list(os.walk('static'))
139 os.chdir(cwd)
139 os.chdir(cwd)
140 static_data = []
140 static_data = []
@@ -148,8 +148,8 b' def find_package_data():'
148 'IPython.config.profile' : ['README*', '*/*.py'],
148 'IPython.config.profile' : ['README*', '*/*.py'],
149 'IPython.testing' : ['*.txt'],
149 'IPython.testing' : ['*.txt'],
150 'IPython.testing.plugin' : ['*.txt'],
150 'IPython.testing.plugin' : ['*.txt'],
151 'IPython.frontend.html.notebook' : ['templates/*'] + static_data,
151 'IPython.html.notebook' : ['templates/*'] + static_data,
152 'IPython.frontend.qt.console' : ['resources/icon/*.svg'],
152 'IPython.qt.console' : ['resources/icon/*.svg'],
153 }
153 }
154 return package_data
154 return package_data
155
155
@@ -312,7 +312,7 b" def find_scripts(entry_points=False, suffix=''):"
312 """
312 """
313 if entry_points:
313 if entry_points:
314 console_scripts = [s % suffix for s in [
314 console_scripts = [s % suffix for s in [
315 'ipython%s = IPython.frontend.terminal.ipapp:launch_new_instance',
315 'ipython%s = IPython.terminal.ipapp:launch_new_instance',
316 'pycolor%s = IPython.utils.PyColorize:main',
316 'pycolor%s = IPython.utils.PyColorize:main',
317 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
317 'ipcontroller%s = IPython.parallel.apps.ipcontrollerapp:launch_new_instance',
318 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
318 'ipengine%s = IPython.parallel.apps.ipengineapp:launch_new_instance',
General Comments 0
You need to be logged in to leave comments. Login now