-
Notifications
You must be signed in to change notification settings - Fork 10
/
cookiecutter.json
31 lines (31 loc) · 993 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
{
"project_name": "Python Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_description": "Short Description for Python Project",
"github_username": "Lee-W",
"github_url": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"author_name": "Wei Lee",
"author_email": "[email protected]",
"python_version": "3.9",
"dependency_management_tool": [
"poetry",
"pipenv"
],
"default_branch": [
"main",
"master"
],
"use_strict_mypy_config": "n",
"build_pypi_package": "n",
"build_docker_image": "n",
"open_source_license": [
"MIT license",
"BSD 3-Clause license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
"auto_detect_update_from_cruft_template": "n",
"_template_version": "1.11.0"
}