Initial commit

This commit is contained in:
2025-11-28 11:52:04 +08:00
commit f74dc351f7
51 changed files with 2402 additions and 0 deletions

14
Makefile Normal file
View File

@@ -0,0 +1,14 @@
PYTHON := .venv/bin/python
PIP := .venv/bin/pip
.PHONY: venv install test
venv:
python3 -m venv .venv
$(PIP) install -e .
install: venv
$(PIP) install -e .[store]
test:
$(PYTHON) -m pytest