-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
33 lines (33 loc) · 1.41 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
{
"full_name": "Author Name",
"email": "author@example.com",
"github_username": "AuthorName",
"year": "{% now 'utc', '%Y' %}",
"project_name": "Python Project",
"project_slug": "{{ cookiecutter.project_name | slugify(separator='_') }}",
"project_distribution_name": "{{ cookiecutter.project_name | slugify }}",
"project_short_description": "A simple Python project.",
"version": "0.0.0",
"main_branch": "main",
"shields_url": "https://img.shields.io",
"discord_invite": "",
"report_method": "{{ cookiecutter.email }}",
"__github_path": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_distribution_name }}",
"__github_url": "https://github.com/{{ cookiecutter.__github_path }}",
"__readthedocs_name": "{{ cookiecutter.project_distribution_name }}",
"__prompts__": {
"full_name": "Author Name",
"email": "Author Email",
"github_username": "GitHub Username",
"year": "Year",
"project_name": "Project Name",
"project_slug": "Project Slug",
"project_distribution_name": "Project Distribution Name",
"project_short_description": "Project Short Description",
"version": "Version",
"main_branch": "Main Branch",
"shields_url": "Shields URL",
"discord_invite": "Discord Server Invite (code only) (leave empty to disable)",
"report_method": "Report Method"
}
}