sup39
709f283e53
codehandler.bin: - Use Nintendont's codehandler - Clearing cache for 04 code type kernel.py: - Fix codelength - Fix code optimization (TODO 28, E2) dolreader.py: - Fix verbose 3 logging bug
27 lines
640 B
Python
27 lines
640 B
Python
import os
|
|
import sys
|
|
from cx_Freeze import setup, Executable
|
|
|
|
include_files = [ "bin/", "LICENSE" ]
|
|
excludes = [ "tkinter" ]
|
|
|
|
options = {
|
|
"build_exe": {
|
|
"optimize": 4,
|
|
"excludes": excludes,
|
|
"include_files": include_files
|
|
}
|
|
}
|
|
|
|
executables = [
|
|
Executable("GeckoLoader.py"),
|
|
]
|
|
|
|
setup(name = "GeckoLoader",
|
|
version = "7.1.0",
|
|
description = "DOL Patcher for extending the codespace of Wii/GC games",
|
|
executables = [Executable("GeckoLoader.py", icon=os.path.join("bin", "icon.ico"))],
|
|
author = "JoshuaMK",
|
|
author_email = "joshuamkw2002@gmail.com",
|
|
options = options
|
|
)
|