ifndef ENV_FOLDER
ENV_FOLDER = $(shell pwd)/.venv
endif
.env:
ifeq ($(shell python -c 'import sys; print(sys.version_info[0:2])'),(2, 7))
@echo "--> Installing environment to $(ENV_FOLDER)"
......