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

20 lines
387 B
Python
Raw Normal View History

2020-08-24 19:10:23 +09:00
import sys
from cx_Freeze import setup, Executable
options = {
'build_exe': {
2020-10-19 17:08:35 +09:00
'optimize': 4,
2020-08-24 19:10:23 +09:00
'excludes': ['tkinter']
}
}
executables = [
Executable('GeckoLoader.py'),
]
setup(name='GeckoLoader',
2020-11-06 19:19:01 +09:00
version='v7.0.0',
2020-08-24 19:10:23 +09:00
description='DOL Patcher for extending the codespace of Wii/GC games',
executables=executables,
options=options
)