import sys from cx_Freeze import setup, Executable options = { "build_exe": { 'include_files' : ['ovh_.conf', 'sablier.png'], "include_msvcr": True, 'optimize': 2, } } build_exe_options = { } base = None if sys.platform == "win32": base = "Win32GUI" executables = [Executable("ovh_management.py", base=base)] setup( name="OVH instances management", version="0.1", description="To manage several OVH instances at once", executables=executables, options=options )