-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcalkit.yaml
More file actions
62 lines (62 loc) · 1.49 KB
/
calkit.yaml
File metadata and controls
62 lines (62 loc) · 1.49 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
owner: calkit
name: example-basic
title: Basic Calkit example
description: A basic Calkit example project.
git_repo_url: https://github.com/calkit/example-basic
dependencies:
- docker
- uv
questions:
- Can we make reproducibility simple?
environments:
py:
path: requirements.txt
kind: uv-venv
python: "3.13"
prefix: .venv
description: A Python virtual environment managed with uv
tex:
kind: docker
image: texlive/texlive:latest-full
description: TeX Live via Docker.
pipeline:
stages:
collect-data:
kind: python-script
script_path: scripts/collect-data.py
environment: py
outputs:
- data/raw/data.csv
plot-voltage:
kind: python-script
script_path: scripts/plot-voltage.py
environment: py
inputs:
- from_stage_outputs: collect-data
outputs:
- figures/voltage-time-series.png
build-paper:
kind: latex
target_path: paper/paper.tex
environment: tex
inputs:
- figures
outputs:
- paper/paper.pdf
datasets:
- path: data/raw/data.csv
title: Raw data
description: This is raw voltage data.
stage: collect-data
figures:
- path: figures/voltage-time-series.png
title: Raw voltage time series
description: A plot of the raw voltage time series.
stage: plot-voltage
publications:
- path: paper/paper.pdf
title: The paper
description: This is the paper.
stage: build-paper
showcase:
- publication: paper/paper.pdf