packages feed

paramtree-0.1.0: paramtree.cabal

Name:               paramtree
Version:            0.1.0

Homepage:           https://github.com/merijn/paramtree
Bug-Reports:        https://github.com/merijn/paramtree/issues

Author:             Merijn Verstraaten
Maintainer:         Merijn Verstraaten <merijn@inconsistent.nl>
Copyright:          Copyright © 2017 Merijn Verstraaten

License:            BSD3
License-File:       LICENSE

Category:           Development, Benchmarking, Testing
Cabal-Version:      >= 1.10
Build-Type:         Simple
Tested-With:        GHC == 7.6.3, GHC == 7.8.4, GHC == 7.10.3, GHC == 8.0.2,
                    GHC == 8.2.1, GHC == 8.3.*

Extra-Source-Files: README.md tests/*.golden

Synopsis:           Generate labelled test/benchmark trees from sets of parameters

Description:
    Easily generate a labelled tree of tests/benchmarks from a generation
    function and sets of parameters to use for each of that functions
    arguments. Example usecases include criterion benchmark trees or tasty test
    trees.

Library
  Default-Language:     Haskell2010
  GHC-Options:          -Wall -fno-warn-unused-do-bind

  Exposed-Modules:      ParamTree
  Other-Extensions:     CPP
                        DataKinds
                        GADTs
                        KindSignatures
                        ScopedTypeVariables
                        TypeFamilies
                        TypeOperators

  Build-Depends:        base >= 4.6 && < 5
               ,        containers >= 0.4 && < 0.6

Test-Suite test
  Default-Language:     Haskell2010
  Type:                 exitcode-stdio-1.0
  Main-Is:              Test.hs
  Hs-Source-Dirs:       tests
  GHC-Options:          -Wall -fno-warn-unused-do-bind
  Other-Extensions:     CPP
                        DataKinds
  Build-Depends:        base
               ,        paramtree
               ,        bytestring >= 0.10 && < 0.11
               ,        tasty >= 0.11 && < 0.13
               ,        tasty-golden >= 2.0 && < 2.4
               ,        tasty-hunit == 0.9.*
               ,        temporary == 1.2.*

Source-Repository head
  Type:     git
  Location: ssh://github.com:merijn/paramtree.git

Source-Repository head
  Type:     mercurial
  Location: https://bitbucket.org/merijnv/paramtree