-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcookiecutter.json
19 lines (19 loc) · 929 Bytes
/
cookiecutter.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"project_name": "Simple Gain",
"plugin_description": "A simple audio volume gain plugin",
"author_name": "Joe Doe",
"domain": "example.com",
"github_username": "{{ cookiecutter.author_name|lower|replace(' ', '.') }}",
"email": "{{ cookiecutter.github_username }}@{{ cookiecutter.domain }}",
"plugin_brand": "{{ cookiecutter.domain }}",
"plugin_name": "{{ cookiecutter.project_name|replace(' ', '') }}",
"repo_name": "{{ cookiecutter.project_name|lower|replace(' ', '') }}",
"plugin_uri": "https://{{ cookiecutter.domain }}/plugins/{{ cookiecutter.repo_name }}",
"plugin_clap_id": "com.github.{{ cookiecutter.github_username }}.{{ cookiecutter.repo_name }}",
"project_license": "MIT",
"version": "0.1.0",
"year": "{% now 'local', '%Y' %}",
"ui_type": ["opengl", "nanovg", "cairo", "none"],
"want_midi_input": ["no", "yes"],
"want_midi_output": ["no", "yes"]
}