-
Notifications
You must be signed in to change notification settings - Fork 5
/
cookiecutter.json
18 lines (18 loc) · 1.08 KB
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"plugin_name": "Plugin to My World",
"repo_name": "{{ cookiecutter.plugin_name|lower|replace(' ','-') }}",
"package_name": "{{ cookiecutter.plugin_name|lower|replace(' ','_')|replace('-','_') }}",
"distribution_name": "pelican-{{ cookiecutter.repo_name }}",
"version": "0.0.0",
"description": "Example plugin generated by cookiecutter-pelican-plugin",
"authors": "{name = \"Jane Smith\", email = \"[email protected]\"}, {name = \"Jack Jones\", email = \"[email protected]\"}",
"keywords": "\"pelican\", \"plugin\"",
"readme": "README.md",
"contributing": "CONTRIBUTING.md",
"license": ["GNU Affero General Public License v3|AGPL-3.0", "GNU General Public License v3|GPL-3.0-only", "Apache Software License|Apache-2.0", "BSD License|BSD-3-Clause", "MIT License|MIT"],
"repo_url": "https://github.com/pelican-plugins/{{ cookiecutter.repo_name }}",
"dev_status": ["1 - Planning", "2 - Pre-Alpha", "3 - Alpha", "4 - Beta", "5 - Production/Stable", "6 - Mature"],
"tests_exist": [true, false],
"python_version": "~=3.9",
"pelican_version": ">=4.5"
}