-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
35 lines (33 loc) · 1.89 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
{
"project_name": "",
"author_name": "",
"author_email": "",
"description": "",
"app_version": "0.0.1",
"open_source_license": ["MIT", "Apache 2.0", "BSD-3-Clause", "AGPL-3.0-only", "No license file"],
"docker_baseimage": "tensorflow/tensorflow",
"baseimage_tag": "2.9.1",
"baseimage_gpu_tag": "",
"__git_base_url": "https://github.com/ai4os-hub",
"__repo_name": "{{ ' '.join(cookiecutter.project_name.split()).lower().replace(' ', '-') }}",
"__app_name": "{{ cookiecutter.__repo_name.replace('-','_') }}",
"__ai4_template": "ai4-template/2.2.0",
"__prompts__": {
"project_name": "\nShort name of your project (max 4 words).\nThe GitHub repository name and python module name are derived from the project_name.\n",
"author_name": "\nAuthor name(s) (and/or your organization/company/team).\n\tIf many, separate by comma\n",
"author_email": "\nE-Mail(s) of main author(s).\n\tIf many, separate by comma\n",
"description": "\nA short description of the project.\n",
"app_version": "\nApplication version (expects X.Y.Z (Major.Minor.Patch), in accordance with `https://semver.org/`).\n",
"open_source_license": {
"__prompt__": "\nSelect one of the licenses, default is MIT. For more info: `https://opensource.org/licenses`.\n",
"MIT": "MIT",
"Apache 2.0": "Apache 2.0",
"BSD-3-Clause": "BSD-3-Clause",
"AGPL-3.0-only": "AGPL-3.0-only",
"No license file": "No license file"
},
"docker_baseimage": "\nDocker image your Dockerfile starts from (FROM <docker_baseimage>).\n\tDo not provide the tag, yet\n",
"baseimage_tag": "\nbaseimage_tag - Default tag for docker_baseimage (for Tensorflow: CPU version, e.g. 2.9.1)\n",
"baseimage_gpu_tag": "\nGPU tag for the baseimage, e.g. 2.9.1-gpu.\n\tShould match and use python3\n"
}
}