.PHONY: dist test install clean twine

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