From aefd059d36ad7e8bb81e218c30b3f61983d60b5f Mon Sep 17 00:00:00 2001 From: toutpuissantged Date: Fri, 9 Apr 2021 12:16:27 +0000 Subject: [PATCH] v1.4 --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index c802962..af0e2fc 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from cx_Freeze import setup, Executable # Dependencies are automatically detected, but it might need fine tuning. build_exe_options = { - + } # GUI applications require a different base on Windows (the default is for # a console application). @@ -11,6 +11,6 @@ base = "Win32GUI" setup( name = "editorplus", version = "0.1", -description = "My GUI application!", +description = "Text editor Programme", options = {"build_exe": build_exe_options}, executables = [Executable("main.py", base=base)])