2025-02-13 15:01:11 +01:00
|
|
|
.PHONY: install install-dev install-pre-commit test style check docs docs-serve
|
|
|
|
|
|
|
|
install:
|
|
|
|
pip install -e .
|
|
|
|
|
|
|
|
install-dev:
|
|
|
|
pip install -e ".[dev]"
|
|
|
|
|
|
|
|
install-pre-commit:
|
|
|
|
pre-commit install
|
|
|
|
|
|
|
|
test:
|
|
|
|
python -m unittest
|
|
|
|
|
|
|
|
style:
|
|
|
|
pre-commit run --all-files
|
|
|
|
|
|
|
|
check: style test
|
|
|
|
|
|
|
|
docs:
|
2025-02-13 15:22:50 +01:00
|
|
|
python pdoc/cli.py -o docs
|
2025-02-13 15:01:11 +01:00
|
|
|
|
|
|
|
docs-serve:
|
2025-02-13 15:22:50 +01:00
|
|
|
python pdoc/cli.py --port 8002
|