-
Notifications
You must be signed in to change notification settings - Fork 10
/
dune-project
59 lines (53 loc) · 1.9 KB
/
dune-project
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
(lang dune 3.0)
(name printbox)
(using mdx 0.2)
(generate_opam_files true)
(version 0.12)
(license "BSD-2-Clause")
(authors "Simon Cruanes" "Guillaume Bury" "lukstafi")
(maintainers c-cube lukstafi)
(source (github c-cube/printbox))
(package
(name printbox)
(synopsis "Allows to print nested boxes, lists, arrays, tables in several formats")
(depends (ocaml (>= 4.08)) (odoc :with-doc))
(tags ("print" "box" "table" "tree")))
(package
(name printbox-text)
(synopsis "Text renderer for printbox, using unicode edges")
(depends (printbox (= :version))
(uutf (>= 1.0))
(uucp (>= 2.0))
(odoc :with-test)))
(package
(name printbox-html)
(synopsis "Printbox unicode handling")
(description "
Adds html output handling to the printbox package.
Printbox allows to print nested boxes, lists, arrays, tables in several formats")
(depends (printbox (= :version))
(printbox-text (and :with-test (= :version)))
(odoc :with-test)
(tyxml (>= 4.3))
(mdx (and (>= 1.4) :with-test))))
(package
(name printbox-md)
(synopsis "Printbox Markdown rendering")
(description "
Adds Markdown output handling to the printbox package, with fallback to text and simplified HTML.
Printbox allows to print nested boxes, lists, arrays, tables in several formats")
(depends (printbox (= :version))
(printbox-text (and (= :version)))
(odoc :with-test)))
(package
(name printbox-ext-plot)
(synopsis "Printbox extension for plotting")
(description "
Extends Printbox with the ability to print scatter plots, line plots, decision boundaries.
Printbox allows to print nested boxes, lists, arrays, tables in several formats")
(depends (printbox (= :version))
(printbox-text (and (= :version)))
(printbox-html (and (= :version)))
(printbox-md (and (= :version)))
(tyxml (>= 4.3))
(odoc :with-test)))