From 55b0e1d81769d92907e46b266e03acd89cc5a706 Mon Sep 17 00:00:00 2001 From: "Veronica K. B. Olsen" <1619840+vkbo@users.noreply.github.com> Date: Sun, 3 Nov 2019 15:06:51 +0100 Subject: [PATCH] The two executables generated for pip should be novelWriter-cli and novelWriter --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5929fe21..2f7b7e6c 100755 --- a/setup.py +++ b/setup.py @@ -15,8 +15,8 @@ setuptools.setup( license = "GNU General Public License v3", url = "https://github.com/vkbo/novelWriter", entry_points = { - "console_scripts" : ["novelWriter=nw:main"], - "gui_scripts" : ["novelWriter-gui=nw:main"], + "console_scripts" : ["novelWriter-cli=nw:main"], + "gui_scripts" : ["novelWriter=nw:main"], }, packages = setuptools.find_packages(exclude=["docs","tests","sample"]), include_package_data = True,