this repo has no description
1opam-version: "2.0"
2synopsis: "A datastructure to accumulate values in bins"
3description: """
4
5This library is useful for counting elements by categories,
6constructing relations and transposing them. Binning are constructed
7from streams of values. A binning can be seen as a generalized
8histogram: values are mapped to bins, and each bin keeps a summary
9value that is updated when an element is added (like a count, the list
10of elements, their mean, etc)."""
11maintainer: ["philippe.veber@gmail.com"]
12authors: ["Philippe Veber"]
13license: "CeCILL-B"
14homepage: "https://github.com/pveber/binning/"
15bug-reports: "https://github.com/pveber/binning/issues"
16depends: [
17 "ocaml" {>= "4.08"}
18 "dune" {>= "2.5"}
19]
20build: [
21 ["dune" "subst"] {dev}
22 [
23 "dune"
24 "build"
25 "-p"
26 name
27 "-j"
28 jobs
29 "@install"
30 "@runtest" {with-test}
31 "@doc" {with-doc}
32 ]
33]
34dev-repo: "git+https://github.com/pveber/binning.git"
35x-commit-hash: "ad82f4d5ef1a39256df6e79e42f7db1ebe51d4e2"
36url {
37 src:
38 "https://github.com/pveber/binning/releases/download/v0.0.0/binning-v0.0.0.tbz"
39 checksum: [
40 "sha256=786fb172db1b73b950e6914e52d27cae3356ff4ea0ca0c0b003abbc9cf187ff7"
41 "sha512=27f449c32a308cf03318a2ccbcefaeafd6730c8f8c80d91038ea4f8fd34721a564fa9b2d1c12b7dae989a4076f2b3c97cc8dc36046405703fe0ba152e6ef10ad"
42 ]
43}