Skip to content

Commit 794c3a2

Browse files
Builder
For cx_Freeze.
1 parent eaf3b13 commit 794c3a2

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

setup.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
import cx_Freeze
2+
import sys
3+
import os
4+
import struct
5+
6+
base = None
7+
8+
if sys.platform=='win32':
9+
base = "Win32GUI"
10+
11+
12+
executables = [cx_Freeze.Executable("main.py")]
13+
14+
cx_Freeze.setup(
15+
name = "Name",
16+
options = {"build_exe":{"packages":["os", "lzss", "struct"]}},
17+
version="1",
18+
executables=executables)

0 commit comments

Comments
 (0)