-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yml
49 lines (40 loc) · 1016 Bytes
/
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
# questions
full_name:
type: str
help: "What's your full name?"
default: "FirstLast"
email:
type: str
help: "Email address"
default: "{{ full_name.lower().replace(' ', '') }}@gmail.com"
github_username:
type: str
help: "GitHub Username"
default: "{{ full_name.replace(' ', '')}}"
python_version:
type: str
help: "Python version to use"
default: "3.10"
project_name:
type: str
help: "Project Name (human readable version)"
default: "PythonPackage"
project_slug:
type: str
help: "Project slug (used for GitHub, PyPI, etc.)"
default: "{{ project_name.lower().replace(' ', '-') }}"
package_name:
type: str
help: "The name of the main Python package (should be a valid Python identifier)"
default: "{{ project_slug.replace('-', '_') }}"
release_package:
type: bool
help: "Release as package?"
default: "yes"
release_docker_image:
type: bool
help: "Release Docker image?"
default: "yes"
# Copier metadata
_min_copier_version: "9.0.0"
_subdirectory: "template"