We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eaf3b13 commit 794c3a2Copy full SHA for 794c3a2
setup.py
@@ -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