Small repo update

* Repo structure changes.
* Some text changes.
* Updated decrypt utility to latest version.
This commit is contained in:
JDM17
2019-04-20 22:01:00 +07:00
parent 6ea831e87f
commit 9ae9b59f70
15 changed files with 4 additions and 4 deletions

35
setup.py Normal file
View 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
)