-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcookiecutter.json
36 lines (36 loc) · 2.33 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
36
{
"full_name": "",
"email": "",
"github_username": "",
"project_name": "",
"dist_name": "{{cookiecutter.project_name.lower().replace(' ', '-')}}",
"package_name": "{{cookiecutter.dist_name.replace('-', '_')}}",
"project_short_description": "",
"repository_name": "{{cookiecutter.github_username}}/{{cookiecutter.dist_name}}",
"repository_url": "https://github.com/{{cookiecutter.repository_name}}",
"docs_url": "https://{{cookiecutter.github_username}}.github.io/{{cookiecutter.dist_name}}/",
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
"python_version": ["3.11", "3.12", "3.13"],
"asyncio": ["Y", "N"],
"pydantic": ["Y", "N"],
"codecov": ["Y","N"],
"mkdocs": ["Y", "N"],
"docs_icon": "material/library",
"docs_color_primary": ["red", "pink", "purple", "deep purple", "indigo", "blue", "light blue", "cyan", "teal", "green", "light green", "lime", "yellow", "amber", "orange", "deep orange", "brown", "grey", "blue grey", "black", "white"],
"docs_color_accent": ["red","pink","purple","deep purple","indigo","blue","light blue","cyan","teal","green","light green","lime","yellow","amber","orange","deep orange"],
"lock_file_support": true,
"__prompts__": {
"full_name": "Provide your [bold plum2]full name[/]",
"email": "Provide your [bold plum2]email[/]",
"python_version": "Provide the [bold plum2]minimum Python version[/]",
"project_name": "Provide the [bold plum2]human-readible project name[/]",
"dist_name": "Provide the [bold plum2]project slug[/] (only ASCII letters/digits, underscores, hyphens, and periods)",
"package_name": "Provide the [bold plum2]package name[/] (only ASCII letters/digits, and underscores)",
"project_short_description": "Provide a [bold plum2]short project description[/]",
"project_repo": "Optionally, provide the [bold plum2]repository url[/]",
"open_source_license": "Provide the [bold plum2]license[/] of this project",
"pypi_username": "Optionally, provide a [bold plum2]PyPI user name[/]",
"github_username": "Optionally, provide a [bold plum2]Github user name[/]",
"lock_file_support": "[bold red]Experimental:[/] Activate support for lock files?"
}
}