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

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

.PHONY: upload
upload:
	env/bin/python -m twine check dist/*
	env/bin/python -m twine upload dist/*