This repository has been archived on 2023-11-29. You can view files and clone it, but cannot push or open issues or pull requests.
WebPicDownloader/build_tool.py

10 lines
300 B
Python

from auto_py_to_exe import __main__ as apte
import pyinstaller_versionfile
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()