Skip to content

Commit

Permalink
Setup for PreBuilt EXEs
Browse files Browse the repository at this point in the history
  • Loading branch information
mungewell committed Mar 4, 2023
1 parent fe8382c commit 435d36b
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions setup-prebuilt.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
from cx_Freeze import setup, Executable

base = None

executables = [Executable("uno_synth.py", base=base)]

packages = ["construct", "os", "argparse", "sys", "mido", "rtmidi"]
options = {
'build_exe': {
'packages':packages,
'excludes':["pygame", "numpy"],
},
}

setup(
name = "uno_synth.py",
options = options,
version = "0.1.0.0",
description = "Library for working with Uno Synth config files",
executables = executables
)

0 comments on commit 435d36b

Please sign in to comment.