.PHONY: build publish

build:
	python3 -m pip install build twine -q
	python3 -m build

publish: build
	python3 -m twine upload dist/*

check:
	python3 -m pip install build -q
	python3 -m build
	python3 -m twine check dist/*
