forked from cloudblue/connect-report-python-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
25 lines (25 loc) · 938 Bytes
/
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
{
"project_name": "My Awesome Project",
"project_slug": "{{ cookiecutter.project_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"description": "My reports are really useful!",
"package_name": "reports",
"package_slug": "{{ cookiecutter.package_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"initial_report_name": "My Awesome Report",
"initial_report_slug": "{{ cookiecutter.initial_report_name.lower()|replace(' ', '_')|replace('-', '_')|replace('.', '_')|trim() }}",
"initial_report_description": "This report provides all data I need",
"initial_report_renderer": [
"xlsx",
"csv",
"pdf",
"json",
"jinja2"
],
"author": "Globex Corporation",
"version": "0.1.0",
"license": [
"Apache Software License 2.0",
"MIT",
"BSD"
],
"use_github_actions": "y"
}