-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
28 lines (28 loc) · 1008 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
27
28
{
"author": "Arianna W. Rosenbluth",
"email": "{{ cookiecutter.author.lower().replace(' ', '') }}@mail.edu",
"package_name": "pytask-plugin",
"package_description": "A pytask plugin for ...",
"github_username": "{{ cookiecutter.author.lower().replace(' ', '') }}",
"github_email": "{{ cookiecutter.email }}",
"python_version": "3.10",
"add_tox": ["yes", "no"],
"add_github_actions": ["yes", "no"],
"add_readthedocs": ["yes", "no"],
"add_codecov": ["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.package_name }}",
"create_conda_environment_at_finish": ["no", "yes"],
"_copy_without_render": [
".github/workflows/main.yml", ".github/workflows/publish-to-pypi.yml"
],
"__package_name": "{{ cookiecutter.package_name.lower().replace(' ', '_').replace('-', '_') }}"
}