packages feed

HMarkov-1.0.0.2: HMarkov.cabal

name:                HMarkov
version:             1.0.0.2
synopsis:            Markov-generated sequences
description:         Sequences generated by trained Markov models
homepage:            https://github.com/swizzard/HMarkov#readme
license:             BSD3
license-file:        LICENSE
author:              Sam Raker
maintainer:          sam.raker@gmail.com
copyright:           2016 Sam Raker
category:            Text
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Markov.HMarkov, Data.Markov.HMarkov.Helpers
  build-depends:       base >= 4.7 && < 5, lens, mtl,
                       random, vector
  default-language:    Haskell2010

test-suite HMarkov-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base, HMarkov, QuickCheck, tasty, tasty-hunit,
                       tasty-quickcheck, random, vector
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/swizzard/HMarkov