mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-07-24 15:25:21 -04:00
add dash for dashboards boilerpate
This commit is contained in:
parent
4afbc76543
commit
e926c8a03e
9 changed files with 1 additions and 0 deletions
24
CLI_app/Makefile
Normal file
24
CLI_app/Makefile
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue