Audio plugin host https://kx.studio/carla
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.1KB

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # ------------------------------------------------------------------------------------------------------------
  4. # Imports (cx_Freeze)
  5. from cx_Freeze import setup, Executable
  6. from os import getenv
  7. # ------------------------------------------------------------------------------------------------------------
  8. # Imports (Custom Stuff)
  9. from carla_host import VERSION
  10. # ------------------------------------------------------------------------------------------------------------
  11. options = {
  12. "zip_include_packages": ["*"],
  13. "zip_exclude_packages": ["PyQt5"],
  14. "replace_paths": [["*","@executable_path/"]],
  15. "optimize": True,
  16. }
  17. boptions = {
  18. "iconfile": "./resources/ico/carla.icns"
  19. }
  20. setup(name = "Carla",
  21. version = VERSION,
  22. description = "Carla Plugin Host",
  23. options = {"build_exe": options, "bdist_mac": boptions},
  24. executables = [Executable("./source/frontend/%s.pyw" % getenv("SCRIPT_NAME"))])
  25. # ------------------------------------------------------------------------------------------------------------