aboutsummaryrefslogtreecommitdiff
path: root/pocketbook/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'pocketbook/Makefile')
-rw-r--r--pocketbook/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/pocketbook/Makefile b/pocketbook/Makefile
new file mode 100644
index 0000000..f09dbbb
--- /dev/null
+++ b/pocketbook/Makefile
@@ -0,0 +1,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