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

28 lines
640 B
Python
Raw Permalink Normal View History

2020-11-06 20:45:05 +09:00
import os
2020-08-24 19:10:23 +09:00
import sys
from cx_Freeze import setup, Executable
include_files = [ "bin/", "LICENSE" ]
2020-11-06 20:45:05 +09:00
excludes = [ "tkinter" ]
2020-08-24 19:10:23 +09:00
options = {
2020-11-06 20:45:05 +09:00
"build_exe": {
"optimize": 4,
"excludes": excludes,
"include_files": include_files
2020-08-24 19:10:23 +09:00
}
}
executables = [
2020-11-06 20:45:05 +09:00
Executable("GeckoLoader.py"),
2020-08-24 19:10:23 +09:00
]
2020-11-06 20:45:05 +09:00
setup(name = "GeckoLoader",
version = "7.1.0",
2020-11-06 20:45:05 +09:00
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
)