diff options
Diffstat (limited to 'Makefile')
-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 |