csv-library-website/makefile

12 lines
176 B
Makefile

default: run
setup:
@python3 -m venv .venv && \
.venv/bin/pip install -r requirements.txt && \
pip install -e .
run:
@.venv/bin/python library/page.py
.PHONY: setup run