mirror of
https://github.com/JDM170/SaveWizard
synced 2025-04-20 22:30:42 +07:00
Small repo update
* Repo structure changes. * Some text changes. * Updated decrypt utility to latest version.
This commit is contained in:
35
setup.py
Normal file
35
setup.py
Normal file
@@ -0,0 +1,35 @@
|
||||
#!/usr/bin/python3
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
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']
|
||||
|
||||
include_files = ['SII_Decrypt.exe']
|
||||
|
||||
options = {
|
||||
'build_exe': {
|
||||
'include_msvcr': True,
|
||||
'excludes': excludes,
|
||||
'zip_include_packages': zip_include_packages,
|
||||
'include_files': include_files,
|
||||
'build_exe': 'stable_build'
|
||||
}
|
||||
}
|
||||
|
||||
setup(
|
||||
name="SaveWizard",
|
||||
version="1.0",
|
||||
description="For editing ETS2 sii files",
|
||||
executables=executables,
|
||||
options=options
|
||||
)
|
||||
Reference in New Issue
Block a user