2 # -*- coding: utf-8 -*-
4 # ------------------------------------------------------------------------------------------------------------
7 from cx_Freeze
import setup
, Executable
9 # ------------------------------------------------------------------------------------------------------------
10 # Imports (Custom Stuff)
12 from carla_host
import VERSION
14 # ------------------------------------------------------------------------------------------------------------
17 "zip_include_packages": ["*"],
18 "zip_exclude_packages": ["PyQt5"],
19 "replace_paths": [["*","./lib/"]],
20 "build_exe": "./build-carla-control",
25 "script": "./source/frontend/carla-control",
26 "targetName": "carla-control",
29 setup(name
= "CarlaControl",
31 description
= "Carla Plugin Host",
32 options
= {"build_exe": options
},
33 executables
= [Executable(**exe_options
)])
35 # ------------------------------------------------------------------------------------------------------------