diff options
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | setup.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.gitignore b/.gitignore index 24db16d..dc4e08c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,4 +7,4 @@ dist kindlegen* .DS_Store Thumbs.db -UnRAR.exe +/UnRAR.exe diff --git a/setup.py b/setup.py index c17d4e6..ebe2bf3 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ elif platform == "win32": from cx_Freeze import setup, Executable base = "Win32GUI" extra_options = dict( - options={"build_exe": {"include_files": ['LICENSE.txt'], "compressed": True}}, + options={"build_exe": {"include_files": ['LICENSE.txt', ['other/UnRAR.exe', 'UnRAR.exe']], "compressed": True}}, executables=[Executable(MAIN, base=base, targetName="KCC.exe", |