forked from ma7555/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcookiecutter.json
More file actions
24 lines (24 loc) · 1.18 KB
/
cookiecutter.json
File metadata and controls
24 lines (24 loc) · 1.18 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
{
"full_name": "Josh Russo",
"email": "[email protected]",
"github_user_or_org_name": "rupe120",
"dev_aws_region": "us-east-1",
"dev_aws_codeartifact_domain": "innovative-core-dev",
"dev_aws_codeartifact_repository": "innovative-pip-dev",
"prod_aws_region": "{{ cookiecutter.dev_aws_region }}",
"prod_aws_codeartifact_domain": "innovative-core",
"prod_aws_codeartifact_repository": "innovative-pip",
"project_name": "Python Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Skeleton project created by Python Project Wizard (ppw)",
"repository_name": "{{ cookiecutter.project_slug.replace('_', '-') }}",
"version": "0.1.0",
"use_pytest": "y",
"add_pyup_badge": "n",
"command_line_interface": ["Fire", "No command-line interface"],
"create_author_file": "y",
"open_source_license": ["MIT", "BSD-3-Clause", "ISC", "Apache-2.0", "GPL-3.0-only", "Not open source"],
"docstrings_style": ["google", "numpy", "rst"],
"install_precommit_hooks": "y",
"_copy_without_render": ["docs/history.md", "docs/contributing.md", "docs/authors.md", "docs/index.md", ".github/workflows/*.yml"]
}