-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
56 lines (50 loc) · 1.95 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
48
49
50
51
52
53
54
55
56
{
"project_name": "Project's name",
"project_description": "An example cookiecutter-shellm project template.",
"author_fullname": "Timothée Mazzucotelli",
"author_email": "[email protected]",
"author_username": "pawamoy",
"repository_provider": ["github.com", "gitlab.com", "bitbucket.org"],
"repository_namespace": "{{ cookiecutter.author_username }}",
"repository_name": "{{ cookiecutter.project_name|lower|replace('_', '-')|replace(' ', '-') }}",
"copyright_holder": "{{ cookiecutter.author_fullname }}",
"copyright_holder_email": "{{ cookiecutter.author_email }}",
"copyright_date": "{% now 'utc', '%Y' %}",
"copyright_license": [
"Academic Free License v3.0",
"Apache License 2.0",
"Artistic License 2.0",
"BSD 2-Clause \"Simplified\" License",
"BSD 3-Clause Clear License",
"BSD 3-Clause \"New\" or \"Revised\" License",
"Boost Software License 1.0",
"Creative Commons Attribution 4.0",
"Creative Commons Attribution Share Alike 4.0",
"Creative Commons Zero v1.0 Universal",
"Do What The F*ck You Want To Public License",
"Educational Community License v2.0",
"Eclipse Public License 1.0",
"Eclipse Public License 2.0",
"European Union Public License 1.1",
"European Union Public License 1.2",
"GNU Affero General Public License v3.0",
"GNU General Public License v2.0",
"GNU General Public License v3.0",
"GNU Lesser General Public License v2.1",
"GNU Lesser General Public License v3.0",
"ISC License",
"LaTeX Project Public License v1.3c",
"MIT License",
"Mozilla Public License 2.0",
"Microsoft Public License",
"Microsoft Reciprocal License",
"University of Illinois/NCSA Open Source License",
"SIL Open Font License 1.1",
"Open Software License 3.0",
"PostgreSQL License",
"The Unlicense",
"zlib License"
],
"script_name": "{{ cookiecutter.repository_name }}",
"_copy_without_render": ["templates", "tests/quality"]
}