Merge pull request #55 from mattayes/52-lowercase-repo_name

#52 Make default repo_name lowercase
This commit is contained in:
Isaac Slavitt 2016-10-25 21:57:48 -04:00 committed by GitHub
commit 0249b43291
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{ {
"project_name": "project_name", "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)", "author_name": "Your name (or your organization/company/team)",
"description": "A short description of the project.", "description": "A short description of the project.",
"year": "2016", "year": "2016",