-
Notifications
You must be signed in to change notification settings - Fork 2
/
copier.yaml
50 lines (39 loc) · 1.05 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
# questions
project_name:
type: str
help: What is your project name?
placeholder: "myproject"
app_name:
type: str
help: What is your first app name?
default: core
package_name:
type: str
help: What is your package name?
default: "{{project_name|lower|replace('_', '-')|replace(' ', '-')}}"
package_version:
type: str
help: What is your package version?
default: 1.0.0
package_description:
type: str
help: What is your package description?
placeholder: "A short description of the project"
package_author_name:
type: str
help: What is your name?
package_author_email:
type: str
help: What is your email?
package_module:
type: str
help: What is your package module?
default: "{{project_name}}"
_exclude: ["copier.yaml", "copier.yml", "~*", "*.py[co]", "__pycache__", ".git", ".DS_Store", ".svn", "README.md"]
_answers_file: .my-custom-answers.yml
_tasks:
- "poetry install"
- "git init -b main"
- "poetry run pre-commit install"
- "git add ."
- "git commit -m Initial"