##// END OF EJS Templates
remove `ipython-qtconsole` gui-script...
MinRK -
Show More
@@ -113,10 +113,10 b' def install():'
113 mkshortcut(python, 'IPython engine', link, cmd, workdir)
113 mkshortcut(python, 'IPython engine', link, cmd, workdir)
114
114
115 link = pjoin(ip_start_menu, 'ipythonqt.lnk')
115 link = pjoin(ip_start_menu, 'ipythonqt.lnk')
116 cmdbase = suffix(pjoin(scripts, 'ipython')) + '-qtconsole'
116 cmdbase = suffix(pjoin(scripts, 'ipython'))
117 if have_setuptools:
117 if have_setuptools:
118 cmdbase += '-script.pyw'
118 cmdbase += '-script.py'
119 cmd = '"%s"' % cmdbase
119 cmd = '"%s" qtconsole' % cmdbase
120 mkshortcut(pythonw, 'IPython Qt Console', link, cmd, workdir)
120 mkshortcut(pythonw, 'IPython Qt Console', link, cmd, workdir)
121
121
122 # FIXME: These below are commented out because we don't ship the html built
122 # FIXME: These below are commented out because we don't ship the html built
@@ -318,9 +318,7 b" def find_scripts(entry_points=False, suffix=''):"
318 'iptest%s = IPython.testing.iptest:main',
318 'iptest%s = IPython.testing.iptest:main',
319 'irunner%s = IPython.lib.irunner:main'
319 'irunner%s = IPython.lib.irunner:main'
320 ]]
320 ]]
321 gui_scripts = [s % suffix for s in [
321 gui_scripts = []
322 'ipython%s-qtconsole = IPython.frontend.qt.console.qtconsoleapp:main',
323 ]]
324 scripts = dict(console_scripts=console_scripts, gui_scripts=gui_scripts)
322 scripts = dict(console_scripts=console_scripts, gui_scripts=gui_scripts)
325 else:
323 else:
326 parallel_scripts = pjoin('IPython','parallel','scripts')
324 parallel_scripts = pjoin('IPython','parallel','scripts')
General Comments 0
You need to be logged in to leave comments. Login now