Skip to content

Commit 435d36b

Browse files
committed
Setup for PreBuilt EXEs
1 parent fe8382c commit 435d36b

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

setup-prebuilt.py

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
from cx_Freeze import setup, Executable
2+
3+
base = None
4+
5+
executables = [Executable("uno_synth.py", base=base)]
6+
7+
packages = ["construct", "os", "argparse", "sys", "mido", "rtmidi"]
8+
options = {
9+
'build_exe': {
10+
'packages':packages,
11+
'excludes':["pygame", "numpy"],
12+
},
13+
}
14+
15+
setup(
16+
name = "uno_synth.py",
17+
options = options,
18+
version = "0.1.0.0",
19+
description = "Library for working with Uno Synth config files",
20+
executables = executables
21+
)

0 commit comments

Comments
 (0)