-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcookiecutter.json
More file actions
32 lines (32 loc) · 893 Bytes
/
cookiecutter.json
File metadata and controls
32 lines (32 loc) · 893 Bytes
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
{
"project_name": "Model Python Template",
"project_slug": "model-python-template",
"project_description": "This is a short description of the project.",
"module_name": "model_name",
"domain": "example.com",
"docs_domain": "docs.{{cookiecutter.domain}}",
"author_username": "username",
"author_fullname": "Full Name",
"author_email": "user@{{cookiecutter.domain}}",
"repo_owner": "{{cookiecutter.author_username}}",
"repo_name": "{{cookiecutter.project_slug}}",
"docker_registry": "{{cookiecutter.repo_owner}}",
"docker_repo_name": "{{cookiecutter.repo_name}}",
"python_version": "3.10",
"version": "0.0.0",
"timezone": "UTC",
"language": "en",
"copyright_year": "2026",
"license": [
"MIT License",
"Apache License 2.0",
"GNU GPLv3",
"BSD License",
"ISC License",
"Proprietary License",
"No License"
],
"_copy_without_render": [
"docs/assets/js/*.js"
]
}