-
Notifications
You must be signed in to change notification settings - Fork 0
/
copier.yaml
52 lines (43 loc) · 1005 Bytes
/
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
51
52
# questions
author:
type: str
help: What is your name?
short_name:
type: str
help: What should we set as a short name for the solver, i.e. prefix for the *.usr.f file etc.?
project_name:
type: str
help: What is your project name, i.e. name of the repository?
default: snek5000-{{short_name}}
package_name:
type: str
help: What should we name the Python package?
default: snek5000_{{short_name}}
description:
type: str
help: Briefly describe the solver.
kth_framework:
type: bool
help: Would you like to use KTH framework for statistics and other features?
default: false
ci:
type: str
help: What Continuous Integration service do you want to use?
choices:
GitHub CI: github
None: none
default: none
_jinja_extensions:
- jinja2_time.TimeExtension
_exclude:
- "copier.yaml"
- "~*"
- "*.py[co]"
- "__pycache__"
- ".git"
- ".gitignore"
- ".DS_Store"
- "license.txt"
- "readme.md"
_tasks:
- "mv gitignore .gitignore"