-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
29 lines (29 loc) · 1.46 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
{
"author_name": "Your Name",
"project_owner": "",
"project_name": "Python Project",
"project_directory_name": "{{ cookiecutter.project_name.replace(' ', '_') }}",
"project_slug": "{{ cookiecutter.project_directory_name.lower().replace(' ', '_') }}",
"project_cli_command": "{{ cookiecutter.project_slug.replace('_', '-') }}",
"project_description": "A short description about the project",
"python_version": "2.7.12",
"version": "0.1.0",
"use_pypi": ["yes", "no"],
"pypi_url": "https://pypi.python.org/pypi",
"use_git": ["yes", "no"],
"command_line_interface": ["Click", "No command-line interface"],
"use_file_logger": ["yes", "no"],
"file_logger_env_var_name": "{{ cookiecutter.project_slug.upper() }}_LOG_DIR",
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
"copyright_year": "{% now 'utc', '%Y' %}",
"_extensions": ["jinja2_time.TimeExtension"],
"_license_strings": {
"MIT license": ":license: MIT, see LICENSE for more details.",
"BSD license": ":license: BSD, see LICENSE for more details.",
"ISC license": ":license: ISC, see LICENSE for more details.",
"Apache Software License 2.0": ":license: Apache Software License, see LICENSE for more details.",
"GNU General Public License v3": ":license: GPLv3, see LICENSE for more details.",
"Not open source": ""
},
"_cookiecutter_py_version": "1.1.0"
}