-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yaml
68 lines (58 loc) · 2.04 KB
/
copier.yaml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# questions
project_name:
typr: str
default: "Package skeleton"
help: "The name of the project"
github_repo_name:
type: str
default: "{{ project_name.lower().replace(' ', '-') }}"
help: "The name of the GitHub repository"
project_slug:
type: str
default: "{{ github_repo_name.lower().replace('-', '_') }}"
help: "The slug that will be used to name the lib package"
github_user:
type: str
default: "username"
help: "The GitHub username"
author_first_name:
type: str
default: "Firstname"
help: "The first name of the author"
author_last_name:
type: str
default: "Lastname"
help: "The last name of the author"
author_orcid:
type: str
default: "0000-0000-0000-0000"
help: "The ORCID ID of the author in case of scientific publication"
author_email:
type: str
default: "{{ author_first_name.lower() }}.{{ author_last_name.lower() }}@domain.io"
help: "The email of the author"
short_description:
type: str
default: "the skeleton of a python lib with everything I like"
help: "A short description of the project"
creation_year:
type: str
default: "{% now 'utc', '%Y' %}"
help: "The creation date of your package, don't change unless it's a manual update"
# copier internal parameters
_subdirectory: "package"
_jinja_extensions: [jinja2_time.TimeExtension]
_message_before_copy: |
________ _______ ___ _____ _ __ ___ _____ ____
| ___ \ \ / / ___ \/ _ \/ __ \| | / / / _ \| __ \| __\
| |_/ /\ V /| |_/ / /_\ \ / \/| |/ / / /_\ \ | \/| |__
| __/ \ / | __/| _ | | | \ | _ | | __ | __|
| | | | | | | | | | \__/\| |\ \| | | | |_\ \| |___
\_| \_/ \_| \_| |_/\____/\_| \_/\_| |_/\____/\____/
_message_before_update: |
________ _______ ___ _____ _ __ ___ _____ ____
| ___ \ \ / / ___ \/ _ \/ __ \| | / / / _ \| __ \| __\
| |_/ /\ V /| |_/ / /_\ \ / \/| |/ / / /_\ \ | \/| |__
| __/ \ / | __/| _ | | | \ | _ | | __ | __|
| | | | | | | | | | \__/\| |\ \| | | | |_\ \| |___
\_| \_/ \_| \_| |_/\____/\_| \_/\_| |_/\____/\____/