Merging upstream version 10.4.2.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
de4e42d4d3
commit
0c79f8b507
88 changed files with 1637 additions and 436 deletions
24
Makefile
Normal file
24
Makefile
Normal file
|
@ -0,0 +1,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:
|
||||
pdoc/cli.py -o pdoc/docs
|
||||
|
||||
docs-serve:
|
||||
pdoc/cli.py
|
Loading…
Add table
Add a link
Reference in a new issue