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.

31 lines
946B

  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. # ------------------------------------------------------------------------------------------------------------
  4. # Imports (cx_Freeze)
  5. from cx_Freeze import setup, Executable
  6. # ------------------------------------------------------------------------------------------------------------
  7. # Imports (Custom Stuff)
  8. from carla_host import *
  9. # ------------------------------------------------------------------------------------------------------------
  10. options = {
  11. "packages": ["re", "sip", "subprocess", "inspect"]
  12. }
  13. boptions = {
  14. "iconfile": "./resources/ico/carla.icns"
  15. }
  16. setup(name = "Carla",
  17. version = VERSION,
  18. description = "Carla Plugin Host",
  19. options = {"build_exe": options, "bdist_mac": boptions},
  20. executables = [Executable("./source/Carla.pyw")])
  21. # ------------------------------------------------------------------------------------------------------------