summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: c2db6b968718c1bb70e1c09965740da08f08a0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
.PHONY: dist test install clean twine

install:
	pip3 install -e .
test:
	pytest tests --cov=./gita $(TEST_ARGS) -n=auto
dist:
	python3 setup.py sdist
twine:
	twine upload dist/*
clean:
	git clean -fdx