-
Notifications
You must be signed in to change notification settings - Fork 8
/
cookiecutter.json
29 lines (29 loc) · 1.24 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
{
"namespace": "ndx-my-namespace",
"description": "My NWB extension",
"author": "My Name",
"email": "[email protected]",
"github_username": "myname",
"copyright": "2024, {{ cookiecutter.author }}",
"version": "0.1.0",
"release": "alpha",
"license": ["BSD-3", "MIT", "Apache Software License 2.0", "Other"],
"py_pkg_name": "{{ cookiecutter.namespace|replace('-', '_') }}",
"initialize_git": true,
"widgets": false,
"_extensions": ["local_extensions.ZipExtension"],
"__prompts__": {
"namespace": "Select a name for your extension. It must start with 'ndx-'",
"description": "Describe your extension",
"author": "Enter your full name or a comma-separated list of names",
"email": "Enter your email address or a comma-separated list of email addresses",
"github_username": "Enter your GitHub username or a comma-separated list of usernames",
"copyright": "Copyright",
"version": "Select an initial version string",
"release": "Select an initial release level",
"license": "Select a license",
"py_pkg_name": "Select a name for the Python package",
"initialize_git": "Initialize a git repository?",
"widgets": "Create templates for integration with NWB Widgets (interactive visualization)?"
}
}