toot/Makefile

19 wiersze
289 B
Makefile
Czysty Zwykły widok Historia

2017-04-12 14:42:04 +00:00
default : clean dist
dist :
@echo "\nMaking source"
@echo "-------------"
@python setup.py sdist
@echo "\nMaking wheel"
@echo "-------------"
@python setup.py bdist_wheel --universal
@echo "\nDone."
clean :
rm -rf build dist *.egg-info MANIFEST
publish :
twine upload dist/*