-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcookiecutter.json
29 lines (29 loc) · 1.11 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
{
"package_name": "",
"package_name_stylized": "",
"short_description": "",
"author_name": "",
"author_github": "",
"author_email": "",
"github_organization_name": "",
"github_repository_name": "",
"command_line_interface": [
true,
false
],
"gitlab": [
false,
true
],
"runner": [
"tox",
"nox"
],
"__runner": "{% if cookiecutter['runner'] == 'tox' %}tox -e{% else %}nox -s{% endif %}",
"__runner_uv": "{% if cookiecutter['runner'] == 'tox' %}--with tox-uv tox -e{% else %}nox -s{% endif %}",
"__runner_pip": "{% if cookiecutter['runner'] == 'tox' %}tox tox-uv{% else %}nox[uv]{% endif %}",
"__runner_install_uv": "{% if cookiecutter['runner'] == 'tox' %}uv tool install tox --with tox-uv{% else %}uv tool install nox[uv]{% endif %}",
"__runner_install_pip": "{% if cookiecutter['runner'] == 'tox' %}python3 -m pip install tox tox-uv{% else %}pip install nox[uv]{% endif %}",
"__runner_tests": "{% if cookiecutter['runner'] == 'tox' %}py{% else %}tests{% endif %}",
"__gh_slug": "{{ cookiecutter.github_organization_name }}/{{ cookiecutter.github_repository_name }}"
}