forked from audreyfeldroy/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcookiecutter.json
More file actions
17 lines (17 loc) · 769 Bytes
/
cookiecutter.json
File metadata and controls
17 lines (17 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"full_name": "James Draper",
"email": "draperjames@github.io",
"github_username": "draperjames",
"project_name": "Python Package Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Python package boilerplate.",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.0.1",
"use_pytest": "n",
"use_pypi_deployment_with_travis": "y",
"add_user_experience_badges": "y",
"add_pyup_badge": "n",
"command_line_interface": ["Click", "No command-line interface"],
"create_author_file": "y",
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"]
}