packages feed

matrix-market-attoparsec-0.1.1.2: matrix-market-attoparsec.cabal

name:                matrix-market-attoparsec
version:             0.1.1.2
synopsis:            Parsing and serialization functions for the NIST Matrix Market format
description:         Parsing and serialization functions for the NIST Matrix Market format.
homepage:            https://github.com/ocramz/matrix-market-attoparsec
license:             BSD2
license-file:        LICENSE
author:              Marco Zocca
maintainer:          zocca marco gmail
copyright:           (c) 2017-2020 Marco Zocca
category:            Parsers
build-type:          Simple
extra-source-files:  README.md
                     CONTRIBUTORS.md
                     CHANGELOG.markdown
data-dir:            data
data-files:          fidapm05.mtx
                     fidapm05_rhs1.mtx                     
cabal-version:       >=1.10
tested-with:         GHC == 8.0.1, GHC == 8.6.5


                     
library
  default-language:    Haskell2010
  ghc-options:         -Wall
  hs-source-dirs:      src
  exposed-modules:     Data.Matrix.MatrixMarket
  other-modules:       Data.Matrix.MatrixMarket.Internal
                       Control.Exception.Common
  build-depends:       attoparsec  >= 0.10
                     , base        >= 4.7 && < 5
                     , bytestring  >= 0.9
                     , exceptions
                     , scientific  >= 0.3.3.8

-- executable matrix-market-attoparsec
--   default-language:    Haskell2010
--   ghc-options:         -threaded -rtsopts -with-rtsopts=-N
--   hs-source-dirs:      app
--   main-is:             Main.hs
--   build-depends:       base
--                      , matrix-market-attoparsec

test-suite spec
  default-language:    Haskell2010
  ghc-options:         -Wall
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       LibSpec
  build-depends:       QuickCheck
                     , base
                     , exceptions
                     , directory
                     , hspec
                     , matrix-market-attoparsec

source-repository head
  type:     git
  location: https://github.com/ocramz/matrix-market-attoparsec