From e36167743d22a06cd2d9b1d76a4ebd88cb9f9174 Mon Sep 17 00:00:00 2001 From: dfirfpi Date: Sun, 7 Jun 2020 18:52:27 +0200 Subject: [PATCH] added setup.py by @michaelfsantos --- setup.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5a679db --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +# Setup file for compiling the python script with cx_Freeze (https://github.com/anthony-tuininga/cx_Freeze) + +from cx_Freeze import setup, Executable + +executables = [ + Executable('kobackupdec.py') +] + +setup(name='KoBackupDec', +# Change build number to the current one + version='20200607', + description='HiSuite / KoBackup Decryptor', + executables=executables +) + +# Compile the python script to an executable with: python setup.py build +# Build an Windows installation Package with: python setup.py bdist_msi