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.

app.py 929B

123456789101112131415161718192021222324252627
  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 VERSION
  9. # ------------------------------------------------------------------------------------------------------------
  10. options = {
  11. "icon": ".\\resources\\ico\\carla.ico",
  12. "packages": ["re", "sip", "subprocess", "inspect"]
  13. }
  14. setup(name = "Carla",
  15. version = VERSION,
  16. description = "Carla Plugin Host",
  17. options = {"build_exe": options},
  18. executables = [Executable(".\\source\\Carla.pyw", base="Win32GUI")])
  19. # ------------------------------------------------------------------------------------------------------------