-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmatrix-market-attoparsec.cabal
61 lines (55 loc) · 2.11 KB
/
matrix-market-attoparsec.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
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