forked from audreyfeldroy/cookiecutter-pypackage
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathcookiecutter.json
29 lines (29 loc) · 1.04 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": "Johan Vergeer",
"email": "[email protected]",
"github_username": "johanvergeer",
"project_name": "Python Boilerplate",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"module_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_short_description": "Python Boilerplate contains all the boilerplate you need to create a Python package.",
"pypi_username": "{{ cookiecutter.github_username }}",
"version": "0.1.0",
"command_line_interface": [
"none",
"click",
"argparse"
],
"create_author_file": "y",
"create_docs": "y",
"open_source_license": [
"MIT license",
"Apache Software License 2.0",
"GNU General Public License v3.0",
"GNU General Public License v2.0",
"BSD 3-Clause 'New' or 'Revised' License",
"GNU Lesser General Public License v2.1",
"BSD 2-Clause 'Simplified' License",
"Not open source"
],
"use_pycharm": "n"
}