-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yaml
More file actions
39 lines (32 loc) · 793 Bytes
/
copier.yaml
File metadata and controls
39 lines (32 loc) · 793 Bytes
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
# Main configuration for Copier
# Documentation: https://copier.readthedocs.io/en/latest/
_subdirectory: template
# Questions
project_name:
type: str
help: Project name
default: Python project
package_name:
type: str
help: Package name
default: "{{ project_name|lower|replace('-', '_')|replace(' ', '_') }}"
validator: >-
{% if not package_name.isidentifier() %}
The project name must be a valid Python identifier
{% endif %}
project_description:
type: str
help: Short description of the project
default: A Python project
author_name:
type: str
help: Author or organisation name
default: Inokufu
author_email:
type: str
help: Contact email
default: [email protected]
min_python_version:
type: str
help: Python version
default: 3.14