retoor
c48bf54dc1
All checks were successful
Build Ragnar anti spam bot / Build (push) Successful in 1m31s
18 lines
314 B
Makefile
18 lines
314 B
Makefile
all: ensure_env format build install
|
|
|
|
format:
|
|
./.venv/bin/python -m pip install black
|
|
./.venv/bin/python -m black .
|
|
|
|
ensure_env:
|
|
-@python3 -m venv .venv
|
|
|
|
build:
|
|
./.venv/bin/python -m pip install build
|
|
./.venv/bin/python -m build .
|
|
|
|
install:
|
|
./.venv/bin/python -m pip install -e .
|
|
|
|
run:
|
|
python -m ragnar.run
|