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
JoshuaMKW 8b5a57ba47 .
2020-10-19 03:08:35 -05: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='v6.0.1',
description='DOL Patcher for extending the codespace of Wii/GC games',
executables=executables,
options=options
)