From 1bfa0eb9c782260607c9a63ae2e5e632fe76e8b4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Jastrz=C4=99bski?= Date: Sat, 14 Sep 2013 17:57:11 +0200 Subject: [PATCH] Bundled UnRAR with Windows binary --- .gitignore | 2 +- 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",