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.

bundle.py 1.1KB

10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
10 years ago
1234567891011121314151617181920212223242526272829303132333435
  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. "packages": ["re", "sip", "subprocess", "inspect"],
  13. "create_shared_zip": False,
  14. "append_script_to_exe": True,
  15. "optimize": True,
  16. "compressed": True
  17. }
  18. boptions = {
  19. "iconfile": "./resources/ico/carla.icns"
  20. }
  21. setup(name = "Carla",
  22. version = VERSION,
  23. description = "Carla Plugin Host",
  24. options = {"build_exe": options, "bdist_mac": boptions},
  25. executables = [Executable("./source/%s.pyw" % getenv("SCRIPT_NAME"))])
  26. # ------------------------------------------------------------------------------------------------------------