1
0
Fork 0
gita/Makefile
Daniel Baumann 519eae4b80
Merging upstream version 0.16.5.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-11 18:50:40 +01:00

12 lines
206 B
Makefile

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