forked from napari/cookiecutter-napari-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
25 lines (25 loc) · 942 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
{
"full_name": "Napari Developer",
"email": "yourname@example.com",
"github_username_or_organization": "githubuser",
"plugin_name": "napari-foobar",
"github_repository_url": ["https://github.com/{{cookiecutter.github_username_or_organization}}/{{cookiecutter.plugin_name}}", "provide later"],
"module_name": "{{ cookiecutter.plugin_name|lower|replace('-', '_') }}",
"display_name": "FooBar Segmentation",
"short_description": "A simple plugin to use FooBar segmentation within napari",
"include_reader_plugin": "y",
"include_writer_plugin": "y",
"include_sample_data_plugin": "y",
"include_widget_plugin": "y",
"use_git_tags_for_versioning": "n",
"install_precommit": "n",
"install_dependabot": "n",
"license": [
"BSD-3",
"MIT",
"Mozilla Public License 2.0",
"Apache Software License 2.0",
"GNU LGPL v3.0",
"GNU GPL v3.0"
]
}