* Code improvements
* Changes in file structure

Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
JDM170
2020-02-17 17:19:28 +07:00
committed by JDM170
parent 0d769cd254
commit 5b5bc9f9d6
16 changed files with 634 additions and 739 deletions

View File

@@ -3,26 +3,20 @@
from cx_Freeze import setup, Executable
executables = [Executable('__init__.py',
targetName="SaveWizard.exe",
base="Win32GUI")]
excludes = ['email', 'html', 'http', 'logging', 'pydoc_data', 'unittest', 'urllib', 'xml', 'tempfile', 'select', 'datetime',
'hashlib', 'shlex', 'shutil', 'socket', 'platform', 'webbrowser', 'pydoc', 'selectors', 'tty', 'inspect', 'doctest',
'plistlib', 'calendar', 'subprocess', 'copy', 'bz2', 'stringprep', 'unicodedata', 'posixpath', 'dummy_threading',
'_strptime', 'pwd']
zip_include_packages = ['collections', 'encodings', 'importlib', 'PyQt5', 'sip', 'wsgiref']
executables = [Executable('__init__.py', targetName="SaveWizard.exe", base="Win32GUI")]
excludes = ['email', 'html', 'http', 'logging', 'pydoc_data', 'unittest', 'urllib', 'xml', 'tempfile', 'select',
'datetime', 'hashlib', 'shlex', 'shutil', 'socket', 'platform', 'webbrowser', 'pydoc', 'selectors', 'tty',
'inspect', 'doctest', 'plistlib', 'calendar', 'subprocess', 'copy', 'bz2', 'stringprep', 'posixpath',
'dummy_threading', '_strptime', 'pwd']
zip_include_packages = ['collections', 'encodings', 'importlib', 'PyQt5', 'sip', 'main', 'second']
include_files = ['SII_Decrypt.exe']
options = {
'build_exe': {
'include_msvcr': True,
'excludes': excludes,
'zip_include_packages': zip_include_packages,
'include_msvcr': True,
'build_exe': 'stable_build',
'include_files': include_files,
'build_exe': 'stable_build'
'zip_include_packages': zip_include_packages,
}
}