Custom AU discovery code
[carla.git] / data / linux / app-carla.py
blob7b168af52c39d166f2f6bffe25926cc2d5f01981
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",
21 "optimize": True,
24 exe_options = {
25 "script": "./source/frontend/carla",
26 "targetName": "carla",
29 setup(name = "Carla",
30 version = VERSION,
31 description = "Carla Plugin Host",
32 options = {"build_exe": options},
33 executables = [Executable(**exe_options)])
35 # ------------------------------------------------------------------------------------------------------------