-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
23 lines (18 loc) · 1022 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import sys
import cx_Freeze
base = None
if (sys.platform == 'win32'):
base = "Win32GUI"
executables = [cx_Freeze.Executable("main.py",
shortcut_name="SLGSystemDataTool",
shortcut_dir="SLGSystemDataTool")]
cx_Freeze.setup(
name="SLGSystemScriptTool",
version="1.0",
description="Dual language GUI tool for (de)compiling and (de/en)crypting (with key finding) scripts of SLG "
"System engine.\nДвуязычное средство с графическим интерфейсом для (де)компилирования и (рас)шифровки "
"(с нахождением ключей) скриптов движка SLG System.",
options={"build_exe": {"packages": ["os", "sys", "tkinter", "locale", "ctypes", "threading", "codecs",
"struct", "time", "json", "copy"]}},
executables=executables
)