PYFILES := `echo *.py`

check:
  python check-dist.py
  ruff check {{PYFILES}}
  ty check --python /usr/bin/python {{PYFILES}}
  vermin -vv --no-tips -i {{PYFILES}}
  md-link-checker

build:
  rm -rf dist
  uv build

upload: build
  uv-publish

doc:
  update-readme-usage -A

format:
  ruff check --select I --fix {{PYFILES}} && ruff format {{PYFILES}}

clean:
  @rm -vrf *.egg-info build/ dist/ __pycache__/

# vim: set sw=2:
