-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
26 lines (26 loc) · 1.09 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
{
"package_name": "my-package",
"module_name": "{{ cookiecutter.package_name.replace('-', '_') }}",
"package_name_stylized": "{{ cookiecutter.module_name.replace('_', ' ').capitalize() }}",
"short_description": "A nice python package",
"github_username": "your-org-or-username",
"full_name": "Firstname Lastname",
"email": "[email protected]",
"orcid": "https://orcid.org/0000-0000-0000-0000",
"command_line_interface": true,
"init_git": ["yes", "no"],
"documentation_website": ["yes", "no"],
"__prompts__": {
"package_name": "Select your package name:",
"module_name": "Select your module name:",
"package_name_stylized": "Stylized package name:",
"short_description": "Short description:",
"github_username": "GitHub username or organization:",
"full_name": "Author full name:",
"email": "Author email:",
"orcid": "Author ORCID:",
"command_line_interface": "Add CLI:",
"init_git": "Initialize a git repository:",
"documentation_website": "Add a documentation website:"
}
}