This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
gardening/Makefile

8 lines
168 B
Makefile

default: install
.PHONY: install
install:
@python3 -m venv .venv && \
.venv/bin/pip install -U pip setuptools wheel && \
.venv/bin/pip install -r requirements.txt;