initial commit

This commit is contained in:
2024-03-28 23:11:30 -07:00
commit 057e20163d
206 changed files with 10154 additions and 0 deletions

16
Makefile Normal file
View File

@@ -0,0 +1,16 @@
PYTHON=/home/smgr/.pyenv/versions/co4/bin/python
BASH=/usr/bin/bash
## ------------------ docs ------------------ ##
docs-build:
sphinx-apidoc --module-first -o docs/_autoref/ co4
make -C docs/ html
docs-serve:
cd docs/_build/html && python -m http.server 9090
docs-clean:
make -C docs/ clean
## ------------------------------------------ ##