mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-07-23 06:50:36 -04:00
add blerplate
This commit is contained in:
parent
d51c32f029
commit
d32e821bd7
9 changed files with 323 additions and 3 deletions
26
dash_app/Makefile
Normal file
26
dash_app/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue