-
Notifications
You must be signed in to change notification settings - Fork 18
/
cookiecutter.json
25 lines (25 loc) · 1.05 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
{
"project_name": "my-awesome-schema",
"__project_slug": "{{ cookiecutter.project_name|lower()|replace(' ', '_')|replace('-', '_') }}",
"github_org": "my-org",
"__source_path": "src/{{cookiecutter.__project_slug}}/schema/{{cookiecutter.__project_slug}}.yaml",
"project_description": "This is the project description.",
"full_name": "My Name",
"email": "[email protected]",
"__author": "{{cookiecutter.full_name}} <{{cookiecutter.email}}>",
"license": ["MIT", "BSD-3", "GNU GPL v3.0", "Apache Software License 2.0"],
"main_schema_class": "Person",
"create_python_classes": ["Yes", "No"],
"use_schemasheets": [
"No",
"Yes"
],
"google_sheet_id": "1wVoaiFg47aT9YWNeRfTZ8tYHN8s8PAuDx5i2HUcDpvQ",
"google_sheet_tabs": "personinfo enums",
"__google_sheet_module": "{{ cookiecutter.google_sheet_tabs|lower()|replace(' ', '_')|replace('-', '_') }}",
"github_token_for_pypi_deployment": "PYPI_PASSWORD",
"_copy_without_render": [
"src/docs/js/*",
"src/docs/javascript/*"
]
}