mvt/Makefile
2022-07-07 12:31:35 +02:00

14 lines
232 B
Makefile

PWD = $(shell pwd)
clean:
rm -rf $(PWD)/build $(PWD)/dist $(PWD)/mvt.egg-info
dist:
python3 setup.py sdist bdist_wheel
upload:
python3 -m twine upload dist/*
test-upload:
python3 -m twine upload --repository testpypi dist/*