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.

27 lines
864B

  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. setup(name = "Carla",
  14. version = "1.9.3",
  15. description = "Carla Plugin Host",
  16. options = {"bdist_exe": options},
  17. executables = [Executable("./source/carla.pyw")])
  18. # ------------------------------------------------------------------------------------------------------------