-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcopier.yml
45 lines (37 loc) · 1.12 KB
/
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
project_name:
type: str
help: What is the name of your project? (Must be unique!)
validator: >-
{% if not (project_name | regex_search('^[a-z][a-z0-9\-\_]+$')) %}
Project name must start with a letter, followed one or more letters, digits or dashes all lowercase.
{% endif %}
dev_language:
type: str
help: What language(s) will you use in this project?
choices:
R: null
Python: null
R and Python: null
use_vscode_ext:
type: bool
help: Do you want to install Visual Studio Code extensions for Jupyter notebooks using {{ dev_language }}?
default: yes
use_rstudio:
type: bool
help: Install RStudio Server? This is optional if using VS Code and R extensions for development.
default: no
use_quarto:
type: bool
help: Install Quarto? Quarto is optional publishing system compatible with {{ dev_language }}.
default: no
include_examples:
type: bool
help: Do you want to include example files?
default: yes
_subdirectory: template
_envops:
trim_blocks: true
lstrip_blocks: true
_exclude:
- "copier.yml"
- ".git"