-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookiecutter.json
29 lines (29 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
22
23
24
25
26
27
28
29
{
"full_name": "Zuru Tech HK Limited, All rights reserved.",
"author": "",
"email": "",
"project_name": "Python Boilerplate",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ','-') }}",
"package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"distribution_name": "{{ cookiecutter.repo_name }}",
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
"python_version": "3.7, 3.8",
"version": "0.1.0",
"gitignore": "y",
"use_pytest": "y",
"command_line_interface": ["Click", "No command-line interface"],
"create_author_file": "y",
"open_source_license": [
"Not open source",
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3"
],
"github_username": "",
"pypi_username": "{{ cookiecutter.github_username }}",
"use_pypi_deployment_with_travis": "y",
"auto_deploy_with_travis_on_new_tag": "{{ 'n' if cookiecutter.use_pypi_deployment_with_travis == 'n' else 'y' }}",
"add_pyup_badge": "y"
}