generated from pythoninthegrasses/python_template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
26 lines (26 loc) · 1.23 KB
/
cookiecutter.json
File metadata and controls
26 lines (26 loc) · 1.23 KB
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
{
"full_name": "Lance Stephens",
"email": "4097471+pythoninthegrass@users.noreply.github.com",
"github_username": "pythoninthegrass",
"project_name": "Minimum Viable Python",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"python_package_import_name": "{{ cookiecutter.project_slug }}",
"project_short_description": "mvp contains all the boilerplate you need to create a Python repo.",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.1.0",
"use_pytest": "y",
"use_pypi_deployment_with_travis": "n",
"add_pyup_badge": "n",
"command_line_interface": ["Typer", "Argparse", "No command-line interface"],
"create_author_file": "n",
"open_source_license": ["Unlicense", "MIT license", "Apache Software License 2.0", "GNU General Public License v3", "GNU Affero General Public License v3", "Mozilla Public License 2.0", "Creative Commons Attribution 4.0", "Creative Commons Zero v1.0 Universal", "WTFPL", "Not open source"],
"__gh_slug": "{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"_copy_without_render": [
"*.html",
"ansible/*",
".github/workflows/*.yml",
"taskfile.yml",
"taskfiles/*.yml"
],
"_new_lines": "\n"
}