packages feed

markov-chain-usage-model-0.0.0: markov-chain-usage-model.cabal

cabal-version: 1.12

name:           markov-chain-usage-model
version:        0.0.0
synopsis:       Computations for Markov chain usage models
description:    Please see the README on GitHub at <https://github.com/advancedtelematic/markov-chain-usage-model#readme>
homepage:       https://github.com/advancedtelematic/markov-chain-usage-model#readme
bug-reports:    https://github.com/advancedtelematic/markov-chain-usage-model/issues
author:         Stevan Andjelkovic
maintainer:     stevan.andjelkovic@here.com
copyright:      Copyright (C) 2018-2019, HERE Europe B.V.
category:       Testing
license:        BSD2
license-file:   LICENSE
build-type:     Simple
tested-with:    GHC == 8.2.2, GHC == 8.4.3, GHC == 8.6.3
extra-source-files:
    README.md
    CHANGELOG.md

source-repository head
  type: git
  location: https://github.com/advancedtelematic/markov-chain-usage-model

library
  exposed-modules:
      MarkovChain
  other-modules:
      Paths_markov_chain_usage_model
  hs-source-dirs:
      src
  ghc-options:
      -Weverything
      -Wno-missing-exported-signatures
      -Wno-missing-import-lists
      -Wno-missed-specialisations
      -Wno-all-missed-specialisations
      -Wno-unsafe
      -Wno-safe
      -Wno-missing-local-signatures
      -Wno-monomorphism-restriction
  build-depends:
      base >=4.10 && <5
    , matrix >= 0.3.6.1
    , vector >= 0.10
  default-language: Haskell2010

test-suite markov-chain-usage-model-test
  type: exitcode-stdio-1.0
  main-is: Spec.hs
  other-modules:
      Paths_markov_chain_usage_model
    , Unit
  hs-source-dirs:
      test
  ghc-options:
      -threaded -rtsopts -with-rtsopts=-N
      -Weverything
      -Wno-missing-exported-signatures
      -Wno-missing-import-lists
      -Wno-missed-specialisations
      -Wno-all-missed-specialisations
      -Wno-unsafe
      -Wno-safe
      -Wno-missing-local-signatures
      -Wno-monomorphism-restriction
  build-depends:
      base >=4.7 && <5
    , doctest
    , markov-chain-usage-model
    , matrix
    , tasty
    , tasty-discover
    , tasty-hunit
    , vector
  default-language: Haskell2010