forked from meltano/edk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yml
51 lines (43 loc) · 1.31 KB
/
copier.yml
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
extension_name:
type: str
help: The name of your extension i.e. `MyExtensionName`
admin_name:
type: str
help: The name of the admin to use for the pyproject.toml entry e.g. `Bob Loblaw`
extension_name_lower:
type: str
help: The name of your extension in lowercase e.g. `myextensionname`
default: "{{ extension_name.lower() }}"
extension_id:
type: str
help: The ID of the wrapper to use e.g. `myextensionname-ext`
default: "{{ extension_name_lower }}-ext"
library_name:
type: str
help: The name of the library to use e.g. `myextensionname_ext`
default: "{{ extension_id.replace('-', '_') }}"
cli_prefix:
type: str
help: The prefix to use for the CLI e.g. `myextensionname`
default: "{{ extension_name_lower }}"
wrapper_target_name:
type: str
help: The path/name of the cli command you are wrapping e.g. `dbt`
extension_description:
type: str
help: A short description of what this extension does. Will be used for the generated README.md.
default: "A meltano utility extension for {{ extension_name }} that wraps the `{{ wrapper_target_name }}` command."
_subdirectory: copier_template
_exclude:
- "copier.yaml"
- "copier.yml"
- "*.py[co]"
- "__pycache__"
- ".git"
- ".DS_Store"
- ".github"
- ".flake8"
- ".pre-commit-config.yaml"
- "tests"
- "poetry.lock"
- "LICENSE"