-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
39 lines (33 loc) · 1.15 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
30
31
32
33
34
35
36
37
38
39
{
"project_name": "Simple Python CLI App",
"package_name": "{{ cookiecutter.project_name|lower|replace(' ', '_')|replace('-', '_') }}",
"executable_name": "{{ cookiecutter.package_name|lower|replace(' ', '-')|replace('_', '-') }}",
"class_name_prefix": "{{ cookiecutter.package_name|replace('-', ' ')|replace('_', ' ')|title|replace(' ', '') }}",
"env_var_name_prefix": "{{ cookiecutter.package_name|replace(' ', '_')|replace('-', '_')|upper }}",
"project_short_description": "Simple Python CLI application",
"project_url": "",
"version": "1.0.0",
"author_name": "John Doe",
"author_email": "[email protected]",
"author_username": "john.doe",
"create_author_file": "y",
"command_line_interface": [
"argparse",
"click"
],
"config_file_format": [
"YAML",
"JSON",
"no config file"
],
"logging_time_zone": [
"utc",
"local"
],
"logging_include_hostname": "y",
"logging_format_json": "n",
"use_pytest": "n",
"_extensions": [
"jinja2_time.TimeExtension"
]
}