packages feed

markov-realization-0.4: markov-realization.cabal

cabal-version: 1.12

name:           markov-realization
version:        0.4
description:    Please see the README on GitHub at <https://github.com/alexloomis/markov#markov-tutorial>
homepage:       https://github.com/alexloomis/markov
bug-reports:    https://github.com/alexloomis/markov/issues
author:         Alex Loomis
maintainer:     atloomis@math.arizona.edu
copyright:      2020 Alex Loomis
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md
    ChangeLog.md
category:       Statistics
synopsis:       Realizations of Markov chains.

source-repository head
  type: git
  location: git://github.com/alexloomis/markov.git

library
  exposed-modules:
      Markov
      Markov.Example
      Markov.Extra
      Markov.Generic
  other-modules:
      Paths_markov_realization
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints
  build-depends:
      base >=4.7 && <5
    , comonad
    , MonadRandom
  default-language: Haskell2010

test-suite markov-test
  type: exitcode-stdio-1.0
  main-is: Test.hs
  other-modules:
      Paths_markov_realization
  hs-source-dirs:
      test
  ghc-options: -threaded -rtsopts -with-rtsopts=-N
    -Wall -Wcompat -Wincomplete-uni-patterns -Wincomplete-record-updates -Wredundant-constraints
  build-depends:
      base >=4.7 && <5
    , markov-realization
    , HTF
    , MonadRandom
  default-language: Haskell2010