-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcookiecutter.json
38 lines (38 loc) · 1.02 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
31
32
33
34
35
36
37
38
{
"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"
],
"create_docs": true,
"_copy_without_render": [
"poetry.lock"
]
}