.PHONY: build upload clean

build: clean
	pip install build twine -q
	python -m build

upload: build
	set -a && . ./.env && set +a && twine upload dist/*

clean:
	rm -rf dist/ build/ src/*.egg-info
