1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
GeckoLoader/setup.py
sup39 709f283e53 Fix bugs for some code types (02, 28, etc.)
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
2022-01-24 02:30:26 +09:00

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
)