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
2020-12-05 08:06:00 -06:00

27 lines
No EOL
628 B
Python

import os
import sys
from cx_Freeze import setup, Executable
include_files = [ "bin/" ]
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
)