this repo has no description
1opam-version: "2.0"
2maintainer: "Bruce Ricard <bruce.ricard@gmail.com>"
3authors: [
4 "Bruce Ricard <bruce.ricard@gmail.com>"
5 "Jesper Louis Andersen <jesper.louis.andersen@gmail.com>"
6]
7homepage: "https://github.com/bruce-ricard/glicko2"
8bug-reports: "https://github.com/bruce-ricard/glicko2/issues"
9license: "GPL-2.0-only"
10dev-repo: "git+https://github.com/bruce-ricard/glicko2.git"
11build: [
12 [make]
13 ["./configure" "--enable-tests"] {with-test}
14 [make "test"] {with-test}
15]
16install: [make "install"]
17remove: ["ocamlfind" "remove" "glicko2"]
18depends: [
19 "ocaml" {>= "4.02.3" & < "5.0"}
20 "fmt" {>= "0.0.8"}
21 "logs" {>= "0.6.0"}
22 "ocamlfind" {build & >= "1.7.0"}
23 "alcotest" {with-test & >= "0.7.0"}
24]
25synopsis: "Implementation of the Glicko2 algorithm"
26description: """
27This library implements the Glicko2 algorithm. It is composed of 3 modules to be used independently, depending on your needs:
28
29- A low level module which allows to rate multiple games within a rating period, the exact algorithm described in the paper.
30- A single game convenience module which is easy to use and allows you to rate games one by one, as they are played, and get new ratings for the players involved.
31- A functor which allows you to specify low level variables from the Glicko2 paper, and some other properties.
32
33Wikipedia article: https://en.wikipedia.org/wiki/Glicko_rating_system
34Glicko2 paper: http://www.glicko.net/glicko/glicko2.pdf"""
35flags: light-uninstall
36url {
37 src: "https://github.com/bruce-ricard/glicko2/archive/v1.0.0.tar.gz"
38 checksum: [
39 "sha256=6ad62d61004aee211a21f6ffc68434b7d1db6af1e3409730331fcd272d0dfa3c"
40 "md5=2cad4ce4dd94dff0e1f37f7bc3658a7a"
41 ]
42}