diff --git a/setup.py b/setup.py index 775af96..e0b16c4 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ elif sys.platform == 'win32': extra_options = dict( options={"build_exe": {"include_files": includefiles, 'excludes': excludes, 'compressed': True}}, executables=[Executable(MAIN, - base='WIN32GUI', + base=base, icon="comic2ebook.ico", copyDependentFiles=True, appendScriptToExe=True, diff --git a/setup_console.py b/setup_console.py index 58001d0..41b8ca9 100644 --- a/setup_console.py +++ b/setup_console.py @@ -17,6 +17,6 @@ setup( license= "ISC License (ISCL)", keywords= "kindle comic mobipocket mobi cbz cbr manga", url = "http://github.com/ciromattia/kcc", - executables = [Executable("kcc/comic2ebook.py", appendScriptToExe=True, appendScriptToLibrary=False), - Executable("kcc/kindlestrip.py", appendScriptToExe=True, appendScriptToLibrary=False)] + executables = [Executable("kcc/comic2ebook.py", compress=True, copyDependentFiles=True, appendScriptToExe=True, appendScriptToLibrary=False), + Executable("kcc/kindlestrip.py", compress=True, copyDependentFiles=True, appendScriptToExe=True, appendScriptToLibrary=False)] ) \ No newline at end of file