-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
49 lines (49 loc) · 1.44 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
{
"project_name": "My Python Package",
"__project_slug": "{{ cookiecutter.project_name|slugify }}",
"__package_name": "{{ cookiecutter.project_name|slugify(separator='_') }}",
"short_description": "",
"python_version": [
"3.13",
"3.12",
"3.11",
"3.10",
"3.9"
],
"license": [
"MIT",
"BSD-3-Clause",
"GPL-3.0-only",
"Apache-2.0",
"LicenseRef-Proprietary"
],
"author_name": "Léo Bernard",
"author_email": "[email protected]",
"github_owner": "leodevian",
"__github_slug": "{{ cookiecutter.github_owner }}/{{ cookiecutter.__project_slug }}",
"__github_repository": "https://github.com/{{ cookiecutter.__github_slug }}",
"__github_pages": "https://{{ cookiecutter.github_owner }}.github.io/{{ cookiecutter.__project_slug }}",
"__prompts__": {
"project_name": "Project name",
"short_description": "Short description",
"python_version": {
"__prompt__": "Python version",
"3.13": "Python 3.13",
"3.12": "Python 3.12",
"3.11": "Python 3.11",
"3.10": "Python 3.10",
"3.9": "Python 3.9"
},
"license": {
"__prompt__": "License",
"MIT": "MIT",
"BSD-3-Clause": "BSD-3-Clause",
"GPL-3.0-only": "GNU General Public License v3.0 only",
"Apache-2.0": "Apache License 2.0",
"LicenseRef-Proprietary": "Proprietary"
},
"author_name": "Full name",
"author_email": "Email",
"github_owner": "GitHub owner"
}
}