-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yml
More file actions
45 lines (33 loc) · 1.03 KB
/
Copy pathcopier.yml
File metadata and controls
45 lines (33 loc) · 1.03 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
# config
_subdirectory: project_template
_templates_suffix: .jinja
# questions
project_name:
type: str
help: How would you like to name your project? (e.g. UV Copier Template)
project_description:
type: str
help: How would you describe your project shortly?
author_name:
type: str
help: What is your name?
author_mail:
type: str
help: What is your email adress?
github_name:
type: str
help: What is your GitHub username?
repository_name:
type: str
help: How would you like to name your GitHub repository?
default: "{% from 'extensions.jinja' import dashify %}{{ dashify(project_name) }}"
module_name:
type: str
help: How would you like to name your Python module?
default: "{% from 'extensions.jinja' import slugify %}{{ slugify(project_name) }}"
_message_after_copy: |
Your project "{{ project_name }}" has been created successfully!
Next steps:
1. Change directory to the project root:
$ cd {{ _copier_conf.dst_path }}
2. Read "README.md" to install project dependencies and start coding.