-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
24 lines (24 loc) · 786 Bytes
/
cookiecutter.json
File metadata and controls
24 lines (24 loc) · 786 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"project_title": "",
"pypi_package_name": "{{ cookiecutter.project_title.lower().replace(' ', '-').replace('_', '-') }}",
"python_package_name":
"{{ cookiecutter.pypi_package_name.replace('-', '_') }}",
"project_description": "",
"first_module_name": "api",
"project_version": "0.1.0",
"project_license": ["Apache-2.0", "Proprietary"],
"python_version": "3.11",
"author_full_name": "",
"author_email": "",
"copyright_holder_full_name": "{{ cookiecutter.author_full_name }}",
"github_username": "",
"include_executable": "y",
"executable_name": "{{ cookiecutter.pypi_package_name }}",
"install_dependencies_now": "y",
"_copy_without_render": [
".redport/patches/*.patch"
],
"_extensions": [
"local_extensions.CustomGlobalsExtension"
]
}