mvt/Makefile

11 lines
164 B
Makefile
Raw Normal View History

2021-07-16 06:05:01 +00:00
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/*