From 53a0f77e8f4c752f0be053d5ca6e63adf2c59585 Mon Sep 17 00:00:00 2001 From: Robin Dunn Date: Sat, 30 Mar 2013 04:42:08 +0000 Subject: [PATCH] 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 --- setup.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b8ed0eb3..5f3822a5 100644 --- a/setup.py +++ b/setup.py @@ -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 = []