-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
24 lines (24 loc) · 1.03 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
{
"author_name": "",
"author_email": "",
"author_github_handle": "",
"repo_name": "",
"__repo_name": "{{ cookiecutter.repo_name.replace('_', '-').replace(' ', '-') }}",
"package_name": "{{ cookiecutter.__repo_name.replace('-', '_') }}",
"package_description": "",
"package_emoji": "",
"requires_python": "",
"__author_name": "{{ cookiecutter.author_name.title() }}",
"__package_description": "{{ cookiecutter.package_description.capitalize() }}",
"__package_emoji": "{{ cookiecutter.package_emoji ~ ' ' if cookiecutter.package_emoji }}",
"__prompts__": {
"author_name": "Name of the author",
"author_email": "Email of the author",
"author_github_handle": "Github handle of the author",
"repo_name": "Name of the repository. Will be sanitized",
"package_name": "Name of the package. Defaults to the sanitized `repo_name`",
"package_description": "Description of the package",
"package_emoji": "[Optional] Emoji to be used for the package",
"requires_python": "Minimum python version required"
}
}