.PHONY: all
all: dist/mnpw

dist/mnpw: mnpw/*.py pyproject.toml *.rst LICENSE.txt
	pyinstaller --noconfirm --onefile "--name=$$(basename $@)" mnpw/__init__.py

.PHONY: clean
clean:
	git clean --force -X -d

.PHONY: bats
bats: all
	bats tests/
