mirror of
https://github.com/RealityNet/kobackupdec.git
synced 2025-04-05 07:27:07 +08:00
added setup.py by @michaelfsantos
This commit is contained in:
parent
f38df74a64
commit
e36167743d
17
setup.py
Normal file
17
setup.py
Normal file
@ -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
|
Loading…
x
Reference in New Issue
Block a user