packages feed

HMarkov-1.0.1.0: HMarkov.cabal

name:                HMarkov
version:             1.0.1.0
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
  other-modules:       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, src
  main-is:             Spec.hs
  build-depends:       base >= 4.7 && < 5
                     , HMarkov
                     , lens
                     , mtl
                     , QuickCheck
                     , random
                     , tasty
                     , tasty-hunit
                     , tasty-quickcheck
                     , vector
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

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