initial commit (public reset)

This commit is contained in:
2024-04-19 18:43:52 -07:00
commit 109fbefd41
29 changed files with 2131 additions and 0 deletions

20
Makefile Normal file
View File

@@ -0,0 +1,20 @@
PYTHON=/home/smgr/.pyenv/versions/execlog/bin/python
BASH=/usr/bin/bash
## ------------------ docs ------------------ ##
docs-build:
sphinx-apidoc --module-first --separate -o docs/_autoref/ execlog
make -C docs/ html
docs-serve:
cd docs/_build/html && python -m http.server 9090
docs-clean:
make -C docs/ clean
rm -rf docs/_autoref
## ------------------------------------------ ##
## ----------------- tests ------------------ ##
test:
pytest --pyargs tests -v