forked from waynerv/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
16 lines (16 loc) · 811 Bytes
/
cookiecutter.json
File metadata and controls
16 lines (16 loc) · 811 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"project_name": "Python Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"pkg_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Skeleton project created by Cookiecutter PyPackage",
"full_name": "Aiden Lu",
"email": "allaher@icloud.com",
"github_username": "anyidea",
"version": "0.1.0",
"command_line_interface": ["Click", "No command-line interface"],
"open_source_license": ["MIT", "BSD-3-Clause", "ISC", "Apache-2.0", "GPL-3.0-only", "Not open source"],
"docstrings_style": ["google", "numpy", "pep257"],
"use_mypy": "y",
"install_precommit_hooks": "y",
"_copy_without_render": ["docs/changelog.md", "docs/contributing.md", "docs/index.md", ".github/workflows/*.yml"]
}