Transform project name to lowercase for slug.

This commit is contained in:
Audrey Roy Greenfeld 2016-04-20 12:47:44 -07:00
parent bfc4703626
commit dcf9509cbb

View File

@ -1,6 +1,6 @@
{ {
"project_name": "project_name", "project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name|replace(' ', '_')|replace('-', '_') }}", "repo_name": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_') }}",
"author_name": "Your Name", "author_name": "Your Name",
"email": "Your email", "email": "Your email",
"description": "A short description of the project.", "description": "A short description of the project.",