Initial commit

This commit is contained in:
2024-07-08 19:44:51 +01:00
commit 7dd401c232
9 changed files with 1860 additions and 0 deletions

11
Makefile Normal file
View File

@@ -0,0 +1,11 @@
.venv:
python3 -m pip install poetry
python3 -m poetry install --with test,github
.PHONY: tests
tests: .venv
python3 -m poetry run pytest
lint: .venv
python3 -m poetry run ruff check --output-format=github --select=E9,F63,F7,F82 --target-version=py37 .
python3 -m poetry run ruff check --output-format=github --target-version=py37 .