packages feed

DPutils-0.0.1.0: DPutils.cabal

Name:           DPutils
Version:        0.0.1.0
License:        BSD3
License-file:   LICENSE
Maintainer:     choener@bioinf.uni-leipzig.de
author:         Christian Hoener zu Siederdissen, 2016
copyright:      Christian Hoener zu Siederdissen, 2016
homepage:       https://github.com/choener/DPutils
bug-reports:    https://github.com/choener/DPutils/issues
Stability:      Experimental
Category:       Data
Build-type:     Simple
Cabal-version:  >=1.10.0
tested-with:    GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.1
Synopsis:       utilities for DP
Description:
                Small set of utility functions
                .



extra-source-files:
  README.md
  changelog.md



Library
  Exposed-modules:
    Data.Char.Util
    Data.Paired.Common
    Data.Paired.Foldable
    Data.Paired.Vector
    Data.Vector.Generic.Unstream
    Math.TriangularNumbers
    Pipes.Parallel
    Pipes.Split.ByteString
  build-depends: base             >= 4.7    &&  < 5.0
               , bytestring
               , containers
               , kan-extensions   >= 4.0
               , parallel         >= 3.0
               , pipes            >= 4.0
               , QuickCheck       >= 2.7
               , stringsearch     >= 0.3
               , transformers     >= 0.5
               , vector           >= 0.10
  default-extensions: BangPatterns
                    , CPP
                    , RankNTypes
                    , ScopedTypeVariables
                    , TypeFamilies
                    , FlexibleContexts
  default-language:
    Haskell2010
  ghc-options:
    -O2
    -funbox-strict-fields



test-suite properties
  type:
    exitcode-stdio-1.0
  main-is:
    properties.hs
  ghc-options:
    -O2 -threaded -rtsopts -with-rtsopts=-N
  hs-source-dirs:
    tests
  default-language:
    Haskell2010
  default-extensions: CPP
                    , RankNTypes
                    , ScopedTypeVariables
                    , TemplateHaskell
  build-depends: base
               , bytestring
               , containers
               , kan-extensions
               , lens                 >= 4.0
               , mtl
               , parallel
               , pipes
               , pipes-bytestring     >= 2.0
               , pipes-parse          >= 3.0
               , QuickCheck
               , quickcheck-instances >= 0.3
               , tasty                >= 0.11
               , tasty-quickcheck     >= 0.8
               , tasty-th             >= 0.1
               , vector
               --
               , DPutils



benchmark benchmark
  type:
    exitcode-stdio-1.0
  build-depends: base
               , criterion  >= 1.1
               , vector
               --
               , DPutils
  hs-source-dirs:
    tests
  main-is:
    benchmark.hs
  default-language:
    Haskell2010
  ghc-options:
    -O2



source-repository head
  type: git
  location: git://github.com/choener/DPutils