diff options
author | siddharth <s@ricketyspace.net> | 2021-06-27 00:42:36 -0400 |
---|---|---|
committer | siddharth <s@ricketyspace.net> | 2021-06-27 00:42:36 -0400 |
commit | d9c7f6206f2bfdf491acdbaf16c02cbf27f0593d (patch) | |
tree | 3ed98f94cc94f277f4cdfff2a2237666e51ebc4e | |
parent | 16236644080372de795aec2b8ab10b69331e737f (diff) |
Makefile: add venv (phony target)
-rw-r--r-- | Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -3,11 +3,17 @@ # # Copyright © 2020 rsiddharth <s@ricketyspace.net> # +VENV_DIR=.venv +VENV=virtualenv fmt: black acmens.py setup.py .PHONY: fmt +venv: + test -d ${VENV_DIR} || ${VENV} --python=python3 ${VENV_DIR} +.PHONY: venv + develop: @python3 setup.py develop @pip install -U pip black twine |