Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

27 wiersze
526 B

  1. import sys
  2. from cx_Freeze import setup, Executable
  3. options = {
  4. "build_exe": {
  5. 'include_files' : ['ovh_.conf', 'sablier.png'],
  6. "include_msvcr": True,
  7. 'optimize': 2,
  8. }
  9. }
  10. build_exe_options = {
  11. }
  12. base = None
  13. if sys.platform == "win32":
  14. base = "Win32GUI"
  15. executables = [Executable("ovh_management.py", base=base)]
  16. setup(
  17. name="OVH instances management",
  18. version="0.1",
  19. description="To manage several OVH instances at once",
  20. executables=executables,
  21. options=options
  22. )