diff --git a/{{cookiecutter.project_slug}}/Makefile b/{{cookiecutter.project_slug}}/Makefile index b2cf6cda7..7a501b1af 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 +freeze: lint ## prepare for a possible release by creating frozen_requirements.txt to compare against requirements.txt + pip freeze > frozen_requirements.txt + docs: ## generate Sphinx HTML documentation, including API docs rm -f docs/{{ cookiecutter.project_slug }}.rst rm -f docs/modules.rst