forked from inveniosoftware/cookiecutter-invenio-module
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
16 lines (16 loc) · 901 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"project_name": "Invenio-FunGenerator",
"project_shortname": "{{ cookiecutter.project_name | lower | replace(' ', '-') }}",
"package_name": "{{ cookiecutter.project_shortname | replace('-', '_') }}",
"github_repo": "inveniosoftware/{{ cookiecutter.project_shortname }}",
"description": "Invenio module that adds more fun to the platform",
"author_name": "CERN",
"author_email": "[email protected]",
"year": "{% now 'local', '%Y' %}",
"copyright_holder": "{{ cookiecutter.author_name }}",
"copyright_by_intergovernmental": true,
"superproject": "Invenio",
"transifex_project": "{{ cookiecutter.project_shortname }}",
"extension_class": "{{ cookiecutter.project_name | replace('-', '') | replace(' ', '') }}",
"config_prefix": "{{ cookiecutter.project_name | replace('Invenio-', '') | replace(' ', '_') | replace('-', '_') | upper }}"
}