From ce6c00582dadc5d62a2e47b8e27c36f87a0a0aed Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Tue, 22 Dec 2020 21:54:46 +0100 Subject: [PATCH] Added entry points for scripts. --- setup.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/setup.py b/setup.py index d5b12d1..4399cb4 100755 --- a/setup.py +++ b/setup.py @@ -13,6 +13,13 @@ setup( packages=['rcon'], extras_require={'GUI': ['pygobject', 'pygtk']}, scripts=['files/rcongui', 'files/rconclt', 'files/rconshell'], + entry_points={ + 'console_scripts': [ + 'rcongui = rcon.gui:main', + 'rconclt = rcon.rconclt:main', + 'rconshell = rcon.rconshell:main', + ], + }, url='https://github.com/conqp/rcon', license='GPLv3', description='A RCON client library library.',