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

15 lines
478 B
Python
Raw Normal View History

2022-09-01 20:51:00 +02:00
from auto_py_to_exe import __main__ as apte
import pyinstaller_versionfile
2022-09-01 20:51:00 +02:00
"""
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(
2022-09-11 11:52:41 +02:00
output_file="app_version_file.txt",
input_file="app_metadata.yml"
)
apte.__name__ = '__main__'
apte.run()