From 4d26f7fb9f06afea55e5aaa4faf216f35d634405 Mon Sep 17 00:00:00 2001 From: Richard Evans Date: Mon, 30 Oct 2023 01:54:48 -0600 Subject: [PATCH] Added Makefile --- Makefile | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f768231 --- /dev/null +++ b/Makefile @@ -0,0 +1,16 @@ +all: build +format: + black . -l 79 + linecheck . --fix +install: + pip install -e . +test: + pip install pytest-cov + pip install pytest-pycodestyle + pytest -m 'not local' --cov=./ --cov-report=xml +documentation: + jupyter-book clean docs/book + jupyter-book build docs/book +pip-package: + pip install wheel + python setup.py sdist bdist_wheel