import sys
from cx_Freeze import setup, Executable
options = {
'build_exe': {
'optimize': 2,
'excludes': ['tkinter']
}
executables = [
Executable('GeckoLoader.py'),
]
setup(name='GeckoLoader',
version='v6.0.1',
description='DOL Patcher for extending the codespace of Wii/GC games',
executables=executables,
options=options
)