png23mf / Makefile
mikhail-shevtsov's picture
feat: initial commit
f257a91
raw
history blame contribute delete
196 Bytes
.PHONY: all .venv install clean
all: install
.venv:
@if [ ! -d .venv ]; then \
python3 -m venv .venv; \
fi
install: .venv
.venv/bin/pip install -r requirements.txt
clean:
rm -rf .venv