aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 2dc851ebef4dd7d27eb13fffc520fc44236b518f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/make -f
 DNAME := dist/$(shell ./setup.py --name)-$(shell ./setup.py --version).tar.gz

test tests:
	@pytest -s

docs:
	@./setup.py build_sphinx

dist: $(DNAME)
$(DNAME):
	@./setup.py sdist

upload: $(DNAME)
	@twine upload $(DNAME)

.PHONY: test tests dist docs

# End of file.