Install the latest Cookiecutter if you haven't installed it yet
pip install -U cookiecutter
Generate a Python package project::
cookiecutter git@github.com:clueshh/cookiecutter-python.git
Create a file named cookiecutter-config.yaml
with the following content:
default_context:
full_name: "John Doe"
email: "john.doe@me.com"
Then run the following command to generate the project:
cookiecutter \
--no-input \
--overwrite-if-exists \
--config-file cookiecutter-config.yaml \
.