mirror of
https://github.com/JDM170/SaveWizard
synced 2025-04-20 22:30:42 +07:00
Update
* Code improvements * Changes in file structure Signed-off-by: JDM170 <30170278+JDM170@users.noreply.github.com>
This commit is contained in:
24
setup.py
24
setup.py
@@ -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,
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user