Created
August 26, 2020 06:50
-
-
Save brodul/adbc3d555bac109e9317bf9dbf149238 to your computer and use it in GitHub Desktop.
python Makefile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SHELL= bash | |
VENV = venv | |
install: requirements.txt | |
python3 -m venv $(VENV) | |
$(VENV)/bin/pip install -r requirements.txt --upgrade | |
clean: | |
rm -rf $(VENV) | |
repl: install | |
$(VENV)/bin/python3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment