forked from gahjelle/template-aoc-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopier.yml
More file actions
54 lines (50 loc) · 632 Bytes
/
copier.yml
File metadata and controls
54 lines (50 loc) · 632 Bytes
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
53
54
# Settings
_subdirectory: src
_tasks:
- python ./download_input.py {{year}} {{day}}
# Questions
year:
type: int
choices:
- 2015
- 2016
- 2017
- 2018
- 2019
- 2020
- 2021
- 2022
day:
type: int
choices:
- 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
puzzle_name:
type: str
default: ""
puzzle_dir:
type: str
default: "{{'%02d'|format(day)}}{% if puzzle_name %}_{{puzzle_name|lower|replace(' ','_')}}{% endif %}"