It would be nice if cookiecutter could run a function into it's context before creating the project. Example: ``` project -- {{ cookiecutter.repo_name }}/ ... -- context.py ``` **context.py** ``` def update_context(context): # do stuff to context ```