Commit 4bf91426 authored by nimrod's avatar nimrod
Browse files

Make target for creating a virtualenv.

parent 186afd44
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -10,3 +10,7 @@ payload.zip: clean requirements.txt $(src)
.PHONY = clean
clean:
	-rm -r payload.zip payload

.venv: requirements.txt
	python3 -m venv .venv
	.venv/bin/pip install -r requirements.txt