-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcookiecutter.json
47 lines (47 loc) · 2.88 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
" ": "]\nCookiecutter Wagtail Package\nUse a project name without `Wagtail` as the prefix, this will be added for you.\n[Please press enter to continue",
"project_name": "Llama Save",
"__project_name_snake_without_prefix": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"__project_name_kebab_without_prefix": "{{ cookiecutter.__project_name_snake_without_prefix.replace('_', '-') }}",
"__project_name_camel_without_prefix": "{{ cookiecutter.__project_name_snake_without_prefix.replace('_', ' ').title().replace(' ', '') }}",
"__project_name_snake": "wagtail_{{ cookiecutter.__project_name_snake_without_prefix }}",
"__project_name_kebab": "wagtail-{{ cookiecutter.__project_name_kebab_without_prefix }}",
"__project_name_camel": "Wagtail{{ cookiecutter.__project_name_camel_without_prefix }}",
"project_short_description": "A one line description of your package.",
"full_name": "Fred Bloggs",
"email": "fred@example.com",
"github_username": "wagtail",
"open_source_license": [
"BSD 3-Clause license",
"MIT license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
"__license_options_pypi": {
"BSD 3-Clause license": "License :: OSI Approved :: BSD License",
"MIT license": "License :: OSI Approved :: MIT License",
"ISC license": "License :: OSI Approved :: ISC License (ISCL)",
"Apache Software License 2.0": "License :: OSI Approved :: Apache Software License",
"GNU General Public License v3": "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Not open source": "License :: Other/Proprietary License"
},
"__license_options_npm": {
"BSD 3-Clause license": "BSD-3-Clause",
"MIT license": "MIT",
"ISC license": "ISC",
"Apache Software License 2.0": "Apache-2.0",
"GNU General Public License v3": "GPL-3.0-only",
"Not open source": "UNLICENSED"
},
"__license_options_readme_badges": {
"BSD 3-Clause license": "[![License: BSD-3-Clause](https://img.shields.io/badge/License-BSD--3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)",
"MIT license": "[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)",
"ISC license": "[![License: ISC](https://img.shields.io/badge/License-ISC-blue.svg)](https://opensource.org/licenses/ISC)",
"Apache Software License 2.0": "[![License: Apache-2.0](https://img.shields.io/badge/License-Apache--2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)",
"GNU General Public License v3": "[![License: GPL-3.0-only](https://img.shields.io/badge/License-GPL--3.0--only-blue.svg)](https://opensource.org/licenses/GPL-3.0)",
"Not open source": ""
},
"use_frontend": "y"
}