-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
30 lines (30 loc) · 1.63 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
{
"project_name": "ProjectName",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"package_name": "{{ cookiecutter.repo_name.lower().replace(' ', '_').replace('-', '_') }}",
"description": "A short description of the project.",
"github_username": "Your personal GitHub username",
"github_host_account": "GitHub account for hosting {{cookiecutter.repo_name}} (e.g. {{ cookiecutter.github_username }} or an organization account). Press Enter to use {{ cookiecutter.github_username }}",
"author_name": "Your name (or your organization/company/team)",
"author_email": "Your email (or your organization/company/team)",
"dependency_source": [
"Prefer conda-forge over the default anaconda channel with pip fallback",
"Prefer default anaconda channel with pip fallback",
"Dependencies from pip only (no conda)"
],
"include_ReadTheDocs": [
"y",
"n"
],
"template_analysis_class": "Class name to template (e.g. {{ cookiecutter.project_name.title().replace(' ', '').replace('-', '').replace('_', '') }} ). Press Enter to skip including analysis templates",
"_mda_cc_version": 0.1,
"_ci_name": "gh-ci",
"_central_branch_name": "main",
"_dependency_source_keys": {
"Prefer conda-forge over the default anaconda channel with pip fallback": "conda-forge",
"Prefer default anaconda channel with pip fallback": "anaconda",
"Dependencies from pip only (no conda)": "pip"
},
"__dependency_source": "{{ cookiecutter._dependency_source_keys[cookiecutter.dependency_source] }}",
"_copy_without_render": []
}