aboutsummaryrefslogtreecommitdiff
path: root/pocketbook/Makefile
blob: f09dbbb1e50652bc9953517d824dc9ac094fa9b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
.PHONY: test lint install uninstall clean

test:
	python -m pytest tests/ -v

lint:
	python -m ruff check src/ tests/

install:
	pip install --user -e .

uninstall:
	pip uninstall -y quicknotes

clean:
	rm -rf build/ dist/ src/*.egg-info