packages feed

dgim-0.0.2: dgim.cabal

name:                dgim
version:             0.0.2
synopsis:            Implementation of DGIM algorithm
description:         A basic implementation of the DGIM algorithm for counting the occurrence of certain elements in a fixed length prefix of a stream.
license:             MIT
license-file:        LICENSE
author:              Utkarsh Upadhyay
maintainer:          musically.ut@gmail.com
stability:           alpha
homepage:            https://github.com/musically-ut/haskell-dgim
bug-reports:         https://github.com/musically-ut/haskell-dgim/issues/
category:            Data, Algorithms
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Data.Stream.Algorithms.DGIM
                     , Data.Stream.Algorithms.DGIM.Internal
  -- other-modules:       
  -- other-extensions:    
  ghc-options:         -Wall -fwarn-incomplete-patterns
  build-depends:       base >=4.7 && <4.8
  hs-source-dirs:      src
  default-language:    Haskell2010

source-repository head
  type:                git
  location:            git://github.com/musically-ut/haskell-dgim.git

Test-Suite dgim-test
  type:                detailed-0.9
  hs-source-dirs:      tests
  test-module:         Test.DGIM
  default-language:    Haskell2010
  build-depends:       base >=4.7 && <4.8
                     , Cabal >= 1.20.0
                     , QuickCheck >= 2.4
                     , dgim >= 0.0.1