-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcookiecutter.json
22 lines (22 loc) · 1.15 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
{
"package_name": "q2-hello-world",
"module_name": "{{ cookiecutter.package_name.replace('-', '_') }}",
"plugin_name": "{{ cookiecutter.package_name.removeprefix('q2-') }}",
"author_name": "A QIIME 2 Plugin Developer",
"author_email": "[email protected]",
"project_url": "https://example.com",
"plugin_description": "A QIIME 2 plugin template.",
"plugin_short_description": "Plugin template.",
"target_distro": ["tiny", "amplicon", "metagenome"],
"__prompts__": {
"package_name": "Package name (e.g., used as the top-level directory name)",
"module_name": "Module name (must be a valid Python identifier)",
"plugin_name": "Plugin name (often a shortened version of the package name)",
"author_name": "Author name",
"author_email": "Author email",
"project_url": "Main plugin website",
"plugin_description": "Longer description, shown when information is requested on plugin",
"plugin_short_description": "Shorter description, shown when plugin is presented in a list",
"target_distro": "Target distribution (if you're not sure, stick with the default)."
}
}