diff --git a/Makefile b/Makefile --- a/Makefile +++ b/Makefile @@ -103,6 +103,12 @@ sdist: python setup.py sdist +.PHONY: dev-env +## make dev-env based on the requirements files and install develop of packages +dev-env: + pip install -r requirements.txt -r requirements_debug.txt -r requirements_test.txt + pip install -e . + # Default command on calling make .DEFAULT_GOAL := show-help