-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
22 lines (22 loc) · 966 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"package_name": "my-model",
"module_name": "{{ cookiecutter.package_name.replace('-', '_') }}",
"package_name_stylized": "{{ cookiecutter.module_name.replace('_', ' ').capitalize() }}",
"short_description": "Machine learning models to produce predictions that can be integrated to Translator Reasoner APIs.",
"github_username": "your-org-or-username",
"full_name": "Firstname Lastname",
"email": "[email protected]",
"orcid": "https://orcid.org/0000-0000-0000-0000",
"init_git": "true",
"__prompts__": {
"package_name": "Your package name",
"module_name": "The module name",
"package_name_stylized": "Package name stylized",
"short_description": "Short description",
"github_username": "Your GitHub username or organization",
"full_name": "Author name",
"email": "Author email",
"orcid": "Author ORCID",
"init_git": "Initialize git repository"
}
}