-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
26 lines (26 loc) · 1018 Bytes
/
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
{
"author": "Arianna W. Rosenbluth",
"email": "{{ cookiecutter.author.lower().replace(' ', '') }}@mail.edu",
"project_name": "Reproducible Research Template",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_description": "A project for ...",
"github_username": "{{ cookiecutter.author.lower().replace(' ', '') }}",
"github_email": "{{ cookiecutter.email }}",
"version": "0.0.1",
"python_version": "3.8",
"add_tox": ["yes", "no"],
"add_github_actions": ["yes", "no"],
"add_readthedocs": ["yes", "no"],
"add_codecov": ["yes", "no"],
"create_changelog": ["yes", "no"],
"open_source_license": [
"MIT", "BSD", "ISC", "Apache Software License 2.0",
"GNU General Public License v3", "Not open source"
],
"make_initial_commit": ["no", "yes"],
"conda_environment_name": "{{ cookiecutter.project_slug }}",
"create_conda_environment_at_finish": ["no", "yes"],
"_copy_without_render": [
".github/workflows/main.yml"
]
}