Use "gui_scripts" entry points where appropriate

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73744 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robin Dunn
2013-03-30 04:42:08 +00:00
parent 6b4601273a
commit 53a0f77e8f

View File

@@ -228,16 +228,19 @@ WX_PKGLIST = [cfg.PKGDIR] + [cfg.PKGDIR + '.' + pkg for pkg in find_packages('wx
ENTRY_POINTS = {
'console_scripts' : [
"helpviewer = wx.tools.helpviewer:main",
"img2png = wx.tools.img2png:main",
"img2py = wx.tools.img2py:main",
"img2xpm = wx.tools.img2xpm:main",
"pywxrc = wx.tools.pywxrc:main",
],
'gui_scripts' : [
"helpviewer = wx.tools.helpviewer:main",
"pycrust = wx.py.PyCrust:main",
"pyshell = wx.py.PyShell:main",
"pyslices = wx.py.PySlices:main",
"pyslicesshell = wx.py.PySlicesShell:main",
]}
],
}
SCRIPTS = []
DATA_FILES = []