packages feed

glicko-0.1.0.0: glicko.cabal

-- Initial haskell-glicko.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                glicko
version:             0.1.0.0
synopsis:            Haskell implementation of Glicko-2
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:          prillan91@gmail.com
-- copyright:
category:            Math
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10
source-repository head
  type:     git
  location: git@github.com:Prillan/haskell-glicko.git

library
  exposed-modules:     Ranking.Glicko
                       Ranking.Glicko.Core
                       Ranking.Glicko.Inference
                       Ranking.Glicko.Types
  -- other-modules:
  -- other-extensions:
  build-depends:       base         >= 4.8   && < 5
                     , containers   >= 0.5   && < 0.6
                     , data-default >= 0.5   && < 0.6
                     , deepseq      >= 1.4   && < 1.5
                     , lens         >= 4.12  && < 5
                     , parallel     >= 3.2   && < 3.3
                     , statistics   >= 0.13  && < 0.14
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite glicko-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , data-default >= 0.5 && < 0.6
                     , glicko
                     , hspec >= 2.1 && < 2.3
                     , lens >= 4.12 && < 5
                     , QuickCheck >= 2.8 && < 2.9
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -O
  default-language:    Haskell2010