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-08-27 07:58:41 +09:00
'optimize': 2,
2020-08-24 19:10:23 +09:00
'excludes': ['tkinter']
}
}
executables = [
Executable('GeckoLoader.py'),
]
setup(name='GeckoLoader',
2020-08-27 07:58:41 +09:00
version='v6.0.1',
2020-08-24 19:10:23 +09:00
description='DOL Patcher for extending the codespace of Wii/GC games',
executables=executables,
options=options
)