move schema to separate uv project

This commit is contained in:
Thomas Peetz
2025-04-22 00:51:41 +02:00
parent 6716103d0c
commit 8a3eebaab5
64 changed files with 745 additions and 1059 deletions
+19
View File
@@ -0,0 +1,19 @@
.PHONY: clean
clean:
find . -name '*.py[co]' -delete
.PHONY: test
test:
python -m pytest \
-v \
--cov=kontor \
--cov-report=term \
--cov-report=html:coverage-report \
tests/
.PHONY: build
build:
uv sync
uv build