mirror of
https://github.com/autistic-symposium/web3-starter-py.git
synced 2025-05-17 22:20:22 -04:00
26 lines
394 B
Makefile
26 lines
394 B
Makefile
.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
|