Name:           PrimitiveArray-Pretty
Version:        0.0.0.2
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/PrimitiveArray-Pretty
bug-reports:    https://github.com/choener/PrimitiveArray-Pretty/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:       Pretty-printing for primitive arrays
Description:
                <http://www.bioinf.uni-leipzig.de/Software/gADP/ generalized Algebraic Dynamic Programming>
                .
                A Pretty-printer for Primitive Arrays.
                .
                The idea is not so much to provide pretty-printing for single
                arrays, but rather to allow for simple prettyfication of
                typical array data. In particular we want to have simplified
                pretty-printing of Inside/Outside combinations of arrays.



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



Library
  Exposed-modules:
    Diagrams.TwoD.ProbabilityGrid
  build-depends: base                     >= 4.7    &&  < 5.0
               , diagrams                 >= 1.3
               , diagrams-contrib         >= 1.3
               , diagrams-lib             >= 1.3
               , diagrams-svg             >= 1.3
               , diagrams-postscript      >= 1.3
               , filepath
               , log-domain               >= 0.10
               , split                    >= 0.2
  default-extensions: BangPatterns
                    , DeriveDataTypeable
                    , FlexibleContexts
                    , ScopedTypeVariables
                    , TypeFamilies
  default-language:
    Haskell2010
  ghc-options:
    -O2
    -funbox-strict-fields



test-suite properties
  type:
    exitcode-stdio-1.0
  main-is:
    properties.hs
  ghc-options:
    -threaded -rtsopts -with-rtsopts=-N
  hs-source-dirs:
    tests
  default-language:
    Haskell2010
  default-extensions: CPP
                    , TemplateHaskell
  build-depends: base
               , QuickCheck
               , test-framework               >= 0.8
               , test-framework-quickcheck2   >= 0.3
               , test-framework-th            >= 0.2
               --
               , PrimitiveArray-Pretty



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