From 1aea92c5f97be8e35d1d3d604792e2007b1f8b23 Mon Sep 17 00:00:00 2001 From: Richard Neumann Date: Sun, 13 Feb 2022 18:00:48 +0100 Subject: [PATCH] Fix script paths --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 0f37fcb..fa5217f 100755 --- a/setup.py +++ b/setup.py @@ -18,9 +18,9 @@ setup( extras_require={'GUI': ['pygobject', 'pygtk']}, entry_points={ 'console_scripts': [ - 'rcongui = rcon.source.gui:main', - 'rconclt = rcon.source.rconclt:main', - 'rconshell = rcon.source.rconshell:main', + 'rcongui = rcon.gui:main', + 'rconclt = rcon.rconclt:main', + 'rconshell = rcon.rconshell:main', ], }, url='https://github.com/conqp/rcon',