paperize/Makefile
2017-05-05 04:00:59 +02:00

12 lines
141 B
Makefile

all: build
build: clean
python setup.py sdist bdist_wheel
upload: clean build
twine upload dist/*
clean:
rm -rf build dist *.egg-info