From 0c04906d9dd34856828bae40feaddf9072546069 Mon Sep 17 00:00:00 2001 From: Craig Jones Date: Mon, 21 Mar 2022 03:10:46 -0700 Subject: [PATCH] Added a Makefile goal: requirements: ## ensure that all of the modules required by this project are installed --- {{cookiecutter.project_slug}}/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile index b2cf6cda7..aec740d1d 100644 --- a/{{cookiecutter.project_slug}}/Makefile +++ b/{{cookiecutter.project_slug}}/Makefile @@ -78,6 +78,9 @@ coverage: ## check code coverage quickly with the default Python coverage html $(BROWSER) htmlcov/index.html +requirements: ## ensure that all of the modules required by this project are installed + pip install -r requirements.txt + docs: ## generate Sphinx HTML documentation, including API docs rm -f docs/{{ cookiecutter.project_slug }}.rst rm -f docs/modules.rst