2
0
Fork 0
textout/Makefile

17 lines
254 B
Makefile
Executable File

#!/usr/bin/make -f
ST := ./setup.py
DNAME := dist/$(shell $(ST) --name)-$(shell $(ST) --version).tar.gz
test tests:
@$(ST) test
dist: $(DNAME)
$(DNAME):
@$(ST) sdist
upload: $(DNAME)
@twine upload $(DNAME)
.PHONY: test tests dist
# End of file.