-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcookiecutter.json
24 lines (24 loc) · 984 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
{
"full_name": "Marco Gancitano",
"email": "[email protected]",
"github_username": "mgancita",
"project_name": "Python Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
"pypi_username": "{{ cookiecutter.github_username }}",
"use_pytest": "y",
"use_pylint": "y",
"use_flake8": "n",
"use_black": "y",
"use_mypy": "y",
"use_yamllint": "n",
"use_github_actions_for_ci": "y",
"use_github_actions_to_publish_docs": "y",
"use_github_actions_for_pypi_deployment": "y",
"create_author_file": "y",
"open_source_license": ["MIT", "BSD-3-Clause", "ISC", "Apache-2.0", "GPL-3.0-only", "Not open source"],
"_copy_without_render": [
".github/workflows/pypi_publish.yml",
".github/workflows/test_pypi_publish.yml"
]
}