-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
21 lines (16 loc) · 772 Bytes
/
setup.py
File metadata and controls
21 lines (16 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import sys
import cx_Freeze
base = None
if (sys.platform == 'win32'):
base = "Win32GUI"
executables = [cx_Freeze.Executable("main.py",
shortcut_name="mesScriptAsseAndDisassembler",
shortcut_dir="mesScriptAsseAndDisassembler")]
cx_Freeze.setup(
name="mesScriptAsseAndDisassembler",
version="1.3",
description="Dual languaged (rus+eng) tool for packing and unpacking mes scripts of Silky Engine.\n"
"Двухязычное средство (рус+англ) для распаковки и запаковки скриптов mes Silky Engine.",
options={"build_exe": {"packages": []}},
executables=executables
)