1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
# Makefile for PSUtils
#
# Copyright (C) Reuben Thomas 2012-2025
# See COPYING for license
test:
tox
build:
python -m build
dist:
git diff --exit-code && \
rm -rf ./dist && \
mkdir dist && \
$(MAKE) build
release-pypi:
twine upload dist/*
release:
$(MAKE) test && \
$(MAKE) dist && \
version=$$(grep version pyproject.toml | grep -o "[0-9.]\+") && \
twine upload dist/* && \
gh release create v$$version --title "Release v$$version" dist/* && \
git pull --tags
loc:
cloc psutils
cloc tests/*.py
.PHONY: dist build
|