-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
35 lines (35 loc) · 1.75 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
{
"author_name": "ELIXIR Cloud AAI",
"author_email": "[email protected]",
"development_status": [
"1 - Planning",
"2 - Pre-Alpha",
"3 - Alpha",
"4 - Beta",
"5 - Production/Stable",
"6 - Mature",
"7 - Inactive"
],
"short_description": "A short description of the project.",
"project_name": "Python Cookiecutter",
"project_name_dashed": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"project_name_underscored": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"github_username": "elixir-cloud-aai",
"python_version": "3.13.0",
"add_script": "y",
"year": "{% now 'utc', '%Y' %}",
"add_pypi_release_ci": "y",
"__prompts__": {
"author_name": "Full name or organization (used in license and pyproject.toml)",
"author_email": "Email address for project contact (used for PyPI publishing and issue reporting)",
"development_status": "Project development phase <integer 1-7> (used in PEP 301 classifier)",
"short_description": "Project summary (used in PyPI and GitHub)",
"project_name": "Main project title (used in README header)",
"project_name_underscored": "Python import name <lowercase, underscores, no spaces> (used in import statements)",
"project_name_dashed": "Distribution name <lowercase, hyphens, no spaces> (used on PyPI)",
"github_username": "GitHub account name (used in repo URL and package metadata)",
"python_version": "Minimum Python version <X.Y.Z format> (used in dependency specification)",
"add_script": "CLI tool inclusion flag <y/n> (used in build configuration)",
"add_pypi_release_ci": "PyPI publishing automation flag <y/n>"
}
}