from auto_py_to_exe import __main__ as apte import pyinstaller_versionfile """ This file allows you to start auto-py in order to quickly and easily build the solution into a viable .exe. Moreover this script will compile the meta data for windows. """ if __name__ == '__main__': pyinstaller_versionfile.create_versionfile_from_input_file( output_file="app_version_file.txt", input_file="app_metadata.yml" ) apte.__name__ = '__main__' apte.run()