summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 8f27ecf06e160b79fa2c511db0e7c8b2221c51c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.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:
	python pdoc/cli.py -o pdoc/docs

docs-serve:
	python pdoc/cli.py