#--------------------------------------------------------------------------- # \file setup_cx.py # \brief # # \version rel. 1.0 # \date Created on 2021-05-11 # \author massimo # Copyryght (C) 2021 Massimo Manca - AIoTech #--------------------------------------------------------------------------- #!/usr/local/bin/python from cx_Freeze import setup, Executable buildOptions = dict( include_files = ['locales', 'key.ico', 'key.png', 'win.ico', 'config-mk.ini'], packages = ["cryptography", 'PyLibUty'], excludes = ['wheel']) setup( name = "Janas Magic Key", version = "1.0", description = "Janas Magic Key GUI", options = dict(build_exe = buildOptions), executables = [Executable("appwin.py", targetName="janasmagickey", base=None, icon='key.ico', shortcutName='Janas Magic Key') ], # build_exe_options = {"packages": ["cryptography"] } ) #--------------------------------------------------------------------------- #---------------------------------------------------------------------------