diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e7f4406 --- /dev/null +++ b/Makefile @@ -0,0 +1,7 @@ +.PHONY: docs test + +docs: + uv run --group docs sphinx-build -b html docs docs/_build/html + +test: + uv run pytest test_pytheory.py -v