-
Notifications
You must be signed in to change notification settings - Fork 2
/
cookiecutter.json
40 lines (40 loc) · 899 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
29
30
31
32
33
34
35
36
37
38
39
40
{
"project_name": "my-python-project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_').replace('.', '_') }}",
"project_description": "Awesome `{{ cookiecutter.project_name.lower().replace(' ', '-') }}` project!",
"username": "Awesome user",
"email": "[email protected]",
"vcs_remote_type": [
"bitbucket",
"github",
"none"
],
"_all_python_minor_version": [
"8",
"9",
"10",
"11"
],
"minimal_python_version": [
"3.8",
"3.9",
"3.10",
"3.11"
],
"version": "0.1.0",
"line_length": 88,
"python_linter": [
"ruff",
"wemake-python-styleguide",
"flake8"
],
"python_formatter": [
"ruff",
"black"
],
"include_mypy_type_checker": "y",
"include_cli_example": "n",
"include_docker_sample": "n",
"include_tests_sample": "y",
"include_notebooks_sample": "y"
}