mvt/Makefile
2022-08-12 16:20:16 +02:00

17 lines
272 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/*
pylint:
pylint --rcfile=setup.cfg mvt