summaryrefslogtreecommitdiff
path: root/Makefile
blob: 04ed05a4b81e00e10a3f1c1e41299009f6dcb45a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
.PHONE: help
help:
	@echo "build - build the package"
	@echo "upload - upload the package to PyPI"

.PHONY: build
build:
	source env/bin/activate
	python -m build --sdist
	python -m build --wheel

upload:
	source env/bin/activate
	twine check dist/*
	twine upload dist/*