##
# Quick Location widget
#
# @file
# @version 0.1

# packaged using this tutorial: https://doc.qt.io/qtforpython/deployment-pyinstaller.html
.PHONY: build

build:
	rm -rf __pycache__ dist build
	pyinstaller --name="qt-map-py" --windowed main.py --add-data "./assets:assets"


# end