-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
executable file
·28 lines (28 loc) · 1.15 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
{
"project_name": "project_name",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"author_name": "Your name (or your organization/company/team)",
"github_username": "Your GitHub username",
"email": "[email protected]",
"description": "A short description of the project.",
"python_version": ["3.10", "3.9", "3.8"],
"n_classes": ["10", "2"],
"task": ["classification", "segmentation"],
"color_mode": ["rgb", "rgba", "grayscale"],
"target_size": ["[224, 224, 3]", "[28, 28, 1]"],
"open_source_license": ["MIT", "Apache-2.0", "GPL-3.0", "BSD-3", "No license file"],
"version": "0.0.0",
"copyright_year": "{% now 'utc', '%Y' %}",
"s3_bucket": "[OPTIONAL] your-bucket-for-syncing-data (do not include 's3://')",
"aws_profile": "default",
"_copy_without_render": ["*.html"],
"development_status": [
"Development Status :: 1 - Planning",
"Development Status :: 2 - Pre-Alpha",
"Development Status :: 3 - Alpha",
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Development Status :: 6 - Mature",
"Development Status :: 7 - Inactive"
]
}