mirror of
https://github.com/ihaveamac/custom-install.git
synced 2025-12-06 06:41:45 +00:00
20 lines
494 B
Python
20 lines
494 B
Python
import sys
|
|
from cx_Freeze import setup, Executable
|
|
|
|
if sys.platform == 'win32':
|
|
executables = [
|
|
Executable('ci-gui.py', target_name='ci-gui-console'),
|
|
Executable('ci-gui.py', target_name='ci-gui', base='Win32GUI'),
|
|
]
|
|
else:
|
|
executables = [
|
|
Executable('ci-gui.py', target_name='ci-gui'),
|
|
]
|
|
|
|
setup(
|
|
name = "ci-gui",
|
|
version = "2.1b4",
|
|
description = "Installs a title directly to an SD card for the Nintendo 3DS",
|
|
executables = executables
|
|
)
|