-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathcookiecutter.json
More file actions
33 lines (33 loc) · 873 Bytes
/
cookiecutter.json
File metadata and controls
33 lines (33 loc) · 873 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
25
26
27
28
29
30
31
32
33
{
"package_name": "packagename",
"module_name": "{{ cookiecutter.package_name|lower()|replace(' ', '_')|replace('-', '_') }}",
"short_description": "",
"author_name": "",
"author_email": "",
"project_url": "",
"license": [
"BSD 3-Clause",
"GNU GPL v3+",
"Apache Software License 2.0",
"BSD 2-Clause",
"Other"
],
"minimum_python_version": [
"3.9",
"3.10",
"3.11",
"3.12"
],
"use_compiled_extensions": "n",
"enable_dynamic_dev_versions": "n",
"include_example_code": "n",
"include_cruft_update_github_workflow": "n",
"_sphinx_theme": "alabaster",
"_parent_project": "",
"_install_requires": "",
"_copy_without_render": [
"docs/_templates",
"docs/_static",
".github/workflows/sub_package_update.yml"
]
}