add blerplate

This commit is contained in:
Mia von Steinkirch 2019-12-17 09:25:46 -08:00
parent d51c32f029
commit d32e821bd7
9 changed files with 323 additions and 3 deletions

26
dash_app/Makefile Normal file
View file

@ -0,0 +1,26 @@
.PHONY: default clean run install test version dist
default: run
clean:
@find . -iname '*.py[co]' -delete
@find . -iname '__pycache__' -delete
@rm -rf dist/
@rm -rf build/
@rm -rf *.egg-info
run:
python3 app.py
install:
pip3 install -r requirements.txt
test:
pytest -vvv
dist: clean
python3 setup.py sdist
python3 setup.py bdist_wheel
version: dist
python3 setup.py --version