mirror of
https://github.com/ihabunek/toot
synced 2024-12-22 07:01:46 +01:00
19 lines
289 B
Makefile
19 lines
289 B
Makefile
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/*
|