add dash for dashboards boilerpate

This commit is contained in:
MvS 2019-12-05 11:47:00 -08:00
parent 4afbc76543
commit e926c8a03e
9 changed files with 1 additions and 0 deletions

24
CLI_app/Makefile Normal file
View file

@ -0,0 +1,24 @@
.PHONY: clean-pyc
default: test
clean-pyc:
@find . -iname '*.py[co]' -delete
@find . -iname '__pycache__' -delete
clean-dist:
@rm -rf dist/
@rm -rf build/
@rm -rf *.egg-info
clean: clean-pyc clean-dist
test:
pytest -vvv
dist: clean
python3 setup.py sdist
python3 setup.py bdist_wheel
version: dist
python3 setup.py --version