first commit

This commit is contained in:
Avanpost 2024-11-05 14:57:38 +00:00
commit 988afb33e3
Signed by: avanpost20
GPG key ID: C879DD866453B55E
73 changed files with 8407 additions and 0 deletions

20
Justfile Normal file
View file

@ -0,0 +1,20 @@
set dotenv-load := true
test:
python test.py
build:
rm -rf dist/*
python -m build
upload:
python -m twine upload dist/*
lint:
pyright .
coverage:
pyright --ignoreexternal --verifytypes next
docs:
cd docs && make html