Switched to using cookiecutter 0.9.0 Jinjafied cookiecutter.json

This commit is contained in:
Daniel Greenfeld 2015-01-13 08:37:28 -08:00
parent 7a73edd752
commit b54309c48f
59 changed files with 4 additions and 3 deletions

View File

@ -1,11 +1,12 @@
{
"project_name": "project_name is the title of the project.",
"repo_name":"repo_name is used for describing the directory structure.",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ', '-') }}",
"package_name": "{{ cookiecutter.repo_name|replace('-', '') }}",
"author_name": "Your Name",
"email": "Your email",
"description": "A short description of the project.",
"year": "2015",
"domain_name": "example.com",
"version": "0.1.0",
"now": "2014/06/15"
"now": "2015/01/13",
"year": "{{ cookiecutter.now[:4] }}"
}