paperize/Makefile

12 lines
141 B
Makefile
Raw Permalink Normal View History

2017-05-05 02:00:59 +00:00
all: build
build: clean
python setup.py sdist bdist_wheel
upload: clean build
twine upload dist/*
clean:
rm -rf build dist *.egg-info