-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcopier.yaml
More file actions
68 lines (60 loc) · 1.48 KB
/
Copy pathcopier.yaml
File metadata and controls
68 lines (60 loc) · 1.48 KB
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
# copier.yaml
project_name:
type: str
help: >-
What is the name of your project?
This will be used in the package name
and other places. Dashes will be converted
to underscores for the Python package/module
name (e.g. "my-project" -> "my_project").
project_description:
type: str
help: >-
A short description of the project.
This will be used in the package metadata
and other places.
python_package_name:
type: str
default: "{{ project_name|replace('-', '_') }}"
when: false
author_name:
type: str
default: "Your Name"
help: >-
Your name. This will be used
in the package metadata and other places.
author_orcid:
type: str
default: "https://orcid.org/0000-0000-0000-0000"
help: >-
Your ORCID. This will be used in
the package metadata and other places.
github_url:
type: str
default: "https://github.com/org/repo"
help: >-
The URL of the GitHub repository.
This will be used in the package metadata
and other places.
github_primary_reviewer:
type: str
default: "@your-github-handle"
help: >-
Primary GitHub reviewer handle for CODEOWNERS
(for example: @octocat). This is used to route
default review requests on pull requests.
_exclude:
- .git
- .DS_Store
- .svn
- __pycache__
- "*.py[co]"
- "~*"
- copier.yaml
- renovate.json
- tests/test_template.py
- .github/workflows/test-template.yml
_envops:
# Jinja settings to remove whitespace
lstrip_blocks: true
trim_blocks: true