diff --git a/data/windows/plugin-ui.py b/data/windows/plugin-ui.py new file mode 100644 index 000000000..ba1e01508 --- /dev/null +++ b/data/windows/plugin-ui.py @@ -0,0 +1,35 @@ +#!/usr/bin/env python3 +# -*- coding: utf-8 -*- + +# ------------------------------------------------------------------------------------------------------------ +# Imports (cx_Freeze) + +from cx_Freeze import setup, Executable + +# ------------------------------------------------------------------------------------------------------------ +# Imports (Custom Stuff) + +from carla_host import VERSION + +# ------------------------------------------------------------------------------------------------------------ + +name = "bigmeter-ui" + +# ------------------------------------------------------------------------------------------------------------ + +options = { + "icon": ".\\resources\\ico\\carla.ico", + "packages": [], + "includes": ["re", "sip", "subprocess", "inspect"], + "build_exe": ".\\data\\windows\\%s\\" % name, + "optimize": False, + "compressed": False +} + +setup(name = name, + version = VERSION, + description = name, + options = {"build_exe": options}, + executables = [Executable(".\\bin\\resources\\%s.pyw" % name, base="Win32GUI")]) + +# ------------------------------------------------------------------------------------------------------------