Skip to content

Commit

Permalink
Added Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
rickecon committed Oct 30, 2023
1 parent a00c344 commit 4d26f7f
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 4d26f7f

Please sign in to comment.