1
0
Fork 0
gita/Makefile
Daniel Baumann 6cfcc808bb
Merging upstream version 0.16.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-11 18:46:39 +01:00

12 lines
202 B
Makefile

.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