mirror of
https://github.com/sourabhv/FlapPyBird.git
synced 2024-11-25 16:35:52 +08:00
29 lines
369 B
Makefile
29 lines
369 B
Makefile
default:
|
|
@make run
|
|
|
|
run:
|
|
python main.py
|
|
|
|
web:
|
|
pygbag main.py
|
|
|
|
web-build:
|
|
pygbag --build main.py
|
|
|
|
init:
|
|
@pip install -U pip; \
|
|
pip install -e ".[dev]"; \
|
|
pre-commit install; \
|
|
|
|
pre-commit:
|
|
pre-commit install
|
|
|
|
pre-commit-all:
|
|
pre-commit run --all-files
|
|
|
|
format:
|
|
black .
|
|
|
|
lint:
|
|
flake8 --config=../.flake8 --output-file=./coverage/flake8-report --format=default
|