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-11-06 04:19:01 -06:00

20 lines
No EOL
387 B
Python

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