-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookiecutter.json
17 lines (17 loc) · 904 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"full_name": "Olamilekan Wahab",
"email": "[email protected]",
"github_username": "Olamyy",
"extension_name": "Flask Extension",
"extension_slug": "{{ cookiecutter.extension_name.lower().replace(' ', '_').replace('-', '_') }}",
"extension_folder_name": "{{ cookiecutter.extension_name.lower().replace(' ', '-') }}",
"extension_short_description": "Flask extension that does x and y.",
"extension_class_name": "{{ cookiecutter.extension_name.lower().replace(' ', '_').replace('-', '_') }}",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.1.0",
"use_pytest": "n",
"use_pypi_deployment_with_travis": "y",
"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"]
}