-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
21 lines (21 loc) · 1.16 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"full_name": "Your Name",
"email": "[email protected]",
"github_username": "idekerlab",
"copyright": "The Regents of the University of California",
"docker_owner": "{{ cookiecutter.github_username }}",
"project_name": "cdtool",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '').replace('-', '_') }}",
"__runner_name": "{{ cookiecutter.project_slug }}cmd",
"__error_class_name": "{{ cookiecutter.project_slug.replace('_','').capitalize() }}Error",
"__runner_lower_class_name": "{{ cookiecutter.project_slug.replace('_','') }}",
"__runner_class_name": "{{ cookiecutter.project_slug.replace('_','').capitalize() }}Runner",
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package with command line",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.1.0",
"use_pytest": "n",
"use_pypi_deployment_with_travis": "n",
"add_pyup_badge": "n",
"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"]
}