packages feed

online-0.5.0: online.cabal

cabal-version: 3.0
name:           online
version:        0.5.0
synopsis:       online statistics
description:    transformation of statistics to online algorithms
category:       statistics
homepage:       https://github.com/tonyday567/online#readme
bug-reports:    https://github.com/tonyday567/online/issues
author:         Tony Day
maintainer:     tonyday567@gmail.com
copyright:      Tony Day
license:        BSD-3-Clause
license-file:   LICENSE
build-type:     Simple

source-repository head
  type: git
  location: https://github.com/tonyday567/online

library
  exposed-modules:
      Online
      Online.Averages
      Online.AveragesB
      Online.Medians
      Online.Quantiles
  hs-source-dirs:
      src
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base >=4.7 && <5
    , foldl
    , tdigest
    , vector
    , vector-algorithms
    , backprop
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
      test
  build-depends:
      base >=4.7 && <5
    , doctest
    , tasty
  default-language: Haskell2010