2
0
Fork 0
textout/Makefile

20 lines
298 B
Makefile
Executable File

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