-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathglicko.cabal
51 lines (48 loc) · 1.81 KB
/
glicko.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
-- Initial haskell-glicko.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: glicko
version: 0.3.0.2
synopsis: Glicko-2 implementation in Haskell.
description:
Implementation of the rating algorithm Glicko-2 by Professor Mark E. Glickman
<http://glicko.net/glicko/glicko2.pdf>
.
For more info, see <https://github.com/Prillan/haskell-glicko>
license: GPL-3
license-file: LICENSE
author: Rasmus Précenth
maintainer: [email protected]
-- copyright:
category: Math
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: [email protected]:Prillan/haskell-glicko.git
library
exposed-modules: Ranking.Glicko
Ranking.Glicko.Core
Ranking.Glicko.Inference
Ranking.Glicko.Types
build-depends: base >= 4.8 && < 5
, containers >= 0.6 && < 0.7
, data-default >= 0.5 && < 0.8
, deepseq >= 1.4 && < 1.5
, parallel >= 3.2 && < 3.3
, statistics >= 0.15 && < 0.16
hs-source-dirs: src
default-language: Haskell2010
default-extensions: DataKinds
test-suite glicko-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Paper
build-depends: base
, data-default >= 0.5 && < 0.8
, glicko
, hspec >= 2.7.2 && < 2.8
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
default-extensions: DataKinds