-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewttrs.cabal
33 lines (31 loc) · 1.18 KB
/
newttrs.cabal
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
cabal-version: 3.0
name: newttrs
version: 0.1.0.2
synopsis: Implementation of the New Table Tennis Rating System
description: The New Table Tennis Rating System is based on Baysian
principles and is designed to handle a large changing
population of players. This algorithm was developed
and published by David J. Marcus which is avaiable
at http://www.ratingscentral.com/Doc/NewTTRS.pdf
homepage: http://github.com/glguy
license: ISC
license-file: LICENSE
author: Eric Mertens
maintainer: [email protected]
copyright: 2013 Eric Mertens
category: Math
build-type: Simple
source-repository head
type: git
location: https://github.com/glguy/newttrs.git
library
exposed-modules: NewTTRS.Law, NewTTRS.Match, NewTTRS.Outcome, NewTTRS.Tournament
build-depends:
array ^>= 0.5.6,
base ^>= 4.19.1,
containers ^>= 0.6.8,
lens ^>= 5.2.3,
statistics ^>= 0.16.2,
time ^>= 1.12.2,
hs-source-dirs: src
ghc-options: -O2