#52 Make default repo_name lowercase

This commit is contained in:
Matthew Hayes 2016-10-25 14:13:19 -07:00
parent 09be03b6ab
commit 89e81cf8c4
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name|replace(' ', '_') }}",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"author_name": "Your name (or your organization/company/team)",
"description": "A short description of the project.",
"year": "2016",