aboutsummaryrefslogtreecommitdiff
path: root/examples/template/example.ini
blob: cca20895147e9fa7b9e89811313a13c7e6e89690 (plain) (blame)
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
63
64
65
66
[meta]
; (string) Mission type: hst, jwst
mission =

; (string) Name of delivery
name =

; (string) A codename is only used when mission is set to "hst"
codename =

; (string) Version of the delivery
version =

; (string) Release Candidate of delivery.
; NOTE: Ignored when final is true.
rc =

; (boolean) Enable delivery finalization routines
final =

; (string) URL of Conda environment YAML
; NOTE: Generally the final release of a older delivery
based_on =

; (string) Target version of Python
python =

[conda]
installer_name = Miniforge3
installer_version = 23.3.1-1
installer_platform = ${STASIS_CONDA_PLATFORM}
installer_arch = ${STASIS_CONDA_ARCH}
installer_baseurl = https://github.com/conda-forge/miniforge/releases/latest/download

; (list) Conda packages to install
conda_packages =

; (list) Python packages to install
pip_packages =

[runtime]
; (string) Environment variable key pairs
; key=value

[test:name] ; where test:"name" denotes the package name
; (boolean) Do not execute "script"
disable =

; (boolean) Add to parallel task pool?
; true = yes (default)
; false = no (send to serial task pool)
parallel =

; (string) Version of tested package
version =

; (string) Git repository of tested package
repository =

; (list) Commands to execute before "script"
; e.g. pip install -e '.[test]'
script_setup =

; (list) Commands to execute against tested package
; e.g. pytest
script =