Continue cleanup
[carla.git] / data / linux / app-carla-control.py
blobd178e876f76f9b9e46b75df30a894baeba661596
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
4 # ------------------------------------------------------------------------------------------------------------
5 # Imports (cx_Freeze)
7 from cx_Freeze import setup, Executable
9 # ------------------------------------------------------------------------------------------------------------
10 # Imports (Custom Stuff)
12 from carla_host import VERSION
14 # ------------------------------------------------------------------------------------------------------------
16 options = {
17 "zip_include_packages": ["*"],
18 "zip_exclude_packages": ["PyQt5"],
19 "replace_paths": [["*","./lib/"]],
20 "build_exe": "./build-carla-control",
21 "optimize": True,
24 exe_options = {
25 "script": "./source/frontend/carla-control",
26 "targetName": "carla-control",
29 setup(name = "CarlaControl",
30 version = VERSION,
31 description = "Carla Plugin Host",
32 options = {"build_exe": options},
33 executables = [Executable(**exe_options)])
35 # ------------------------------------------------------------------------------------------------------------