From 569138fe9535c80127b65786b4ca781e82020034 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Bidar?= Date: Fri, 13 Oct 2023 00:49:58 +0300 Subject: [PATCH] Install gui_script instead, Waypaper is a gui app Read below for more: https://setuptools.pypa.io/en/latest/userguide/entry_point.html#gui-scripts --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0f91f5a..5874d5d 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ setuptools.setup( long_description_content_type='text/markdown', license='GPL', entry_points={ - "console_scripts": [ + "gui_scripts": [ "waypaper = waypaper.__main__:run" ] },