-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpprint.opam
22 lines (22 loc) · 879 Bytes
/
pprint.opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
opam-version: "2.0"
maintainer: "[email protected]"
authors: [
"François Pottier <[email protected]>"
"Nicolas Pouillard <[email protected]>"
]
license: "LGPL-2.0-only WITH OCaml-LGPL-linking-exception"
homepage: "https://github.com/fpottier/pprint"
dev-repo: "git+ssh://[email protected]/fpottier/pprint.git"
bug-reports: "[email protected]"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.03"}
"dune" {>= "1.3"}
]
synopsis: "A pretty-printing combinator library and rendering engine"
description: "This library offers a set of combinators for building so-called documents as
well as an efficient engine for converting documents to a textual, fixed-width
format. The engine takes care of indentation and line breaks, while respecting
the constraints imposed by the structure of the document and by the text width."