summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index d28abce..f7fbe4e 100644
--- a/Makefile
+++ b/Makefile
@@ -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