-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbistro.opam
59 lines (57 loc) · 1.57 KB
/
bistro.opam
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
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
synopsis: "A library to build and run distributed scientific workflows"
description: """
bistro is an OCaml library to build and run computations represented
by a collection of interdependent scripts or OCaml functions, as is
often found in data analysis.
Features:
- build complex and composable workflows declaratively
- simple and lightweight wrapping of new components
- resume-on-failure: if something fails, fix it and the workflow will
restart from where it stopped
- parallel workflow execution
- development-friendly: when a script is modified, bistro
automatically finds out what needs to be recomputed
- automatic naming of generated files
- static typing: detect file format errors at compile time
"""
maintainer: ["philippe.veber@gmail.com"]
authors: ["Philippe Veber"]
license: "CeCILL-B"
tags: ["workflow" "pipeline"]
homepage: "https://github.com/pveber/bistro/"
bug-reports: "https://github.com/pveber/bistro/issues"
depends: [
"base64" {>= "3.0.0"}
"bos"
"dune" {>= "3.16" & > "1.6"}
"core" {>= "0.15.0"}
"core_unix" {>= "0.15.0"}
"lwt" {>= "3.2.0"}
"lwt_react"
"ocamlgraph" {>= "1.8.7"}
"ocaml" {>= "4.08.0"}
"ppxlib" {>= "0.23.0"}
"ppx_sexp_conv"
"rresult"
"sexplib" {>= "113.24.00"}
"streaming" {>= "0.8.0"}
"tyxml" {>= "4.3.0"}
"odoc" {with-doc}
]
build: [
["dune" "subst"] {dev}
[
"dune"
"build"
"-p"
name
"-j"
jobs
"@install"
"@runtest" {with-test}
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/pveber/bistro.git"