-
Notifications
You must be signed in to change notification settings - Fork 7
/
cookiecutter.json
22 lines (22 loc) · 965 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
{
"project_name": "python-project",
"project_description": "Awesome `{{ cookiecutter.project_name.lower().replace(' ', '-') }}` is a Python cli/package created with https://github.com/Undertone0809/python-package-template",
"organization": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"license": ["MIT", "BSD-3", "GNU GPL v3.0", "Apache Software License 2.0"],
"_all_python_minor_version": [7, 8, 9],
"minimal_python_version": [3.8, 3.9],
"github_name": "{{ cookiecutter.organization.lower().replace(' ', '_').replace('-', '_') }}",
"email": "hello@{{ cookiecutter.organization.lower().replace(' ', '-') }}.com",
"version": "0.1.0",
"line_length": 88,
"using_tsinghua_mirror_source": false,
"install_ruff": true,
"install_pre_commit": true,
"install_coverage": true,
"install_darglint": false,
"install_safety": false,
"create_example_template": ["cli", "none"],
"_copy_without_render": [
"poetry.lock"
]
}