File: kvitable.cabal

package info (click to toggle)
haskell-kvitable 1.0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 236 kB
  • sloc: haskell: 2,006; makefile: 6
file content (81 lines) | stat: -rw-r--r-- 3,008 bytes parent folder | download
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
cabal-version:       >=1.10
name:                kvitable
version:             1.0.3.0
synopsis:            Key/Value Indexed Table container and formatting library
description:
   .
   Allows creation of a table from a set of of Key+Value Indices.
   This differs from the standard 'Map' structure in that the 'Map'
   simply indexes by value but the KVI table indexes by a
   heterogeneous list of keys along with their associated values.
   This effectively creates an N-dimensional table, where
   @N=Product(Count(Values[key]))@.  The table contents can be sparse.
   .
   This library also provides the ability to format multi-dimensional
   data in a table presentation.  The table is automatically formatted
   and can be output in a number of different styles (ascii, html,
   etc.)
   .
   Multi-dimensional data is more difficult to represent than simple
   two-dimensional data; this package provides the ability to select
   which dimensions should be represented as sub-rows and which
   dimensions should be represented as sub-columns.  See the README
   for examples

-- bug-reports:
license:             ISC
license-file:        LICENSE
author:              Kevin Quick
maintainer:          kquick@galois.com
copyright:           Kevin Quick, 2021-2022
category:            Text
homepage:            https://github.com/kquick/kvitable
build-type:          Simple
tested-with:         GHC ==8.6.5
                     GHC ==8.8.4
                     GHC ==8.10.7
                     GHC ==9.0.1
                     GHC ==9.2.7
                     GHC ==9.4.4
                     GHC ==8.6.1
extra-source-files:  CHANGELOG.md
                   , examples/hundreds_all.md
                   , examples/zoo.md
                   , README.md

library
  hs-source-dirs:      src
  default-language:    Haskell2010
  GHC-options:         -Wall -Wcompat -Wincomplete-uni-patterns -Wpartial-fields -fhide-source-paths
  -- other-extensions:
  exposed-modules:     Data.KVITable
                     , Data.KVITable.Render
                     , Data.KVITable.Render.ASCII
                     , Data.KVITable.Render.HTML
  -- other-modules:
  build-depends:       base >=4.12 && <4.20
                     , containers
                     , lucid  >= 2.9 && < 2.12
                     , microlens >= 0.4 && < 0.5
                     , prettyprinter >= 1.7 && < 1.8
                     , text

test-suite test-kvitable
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  default-language:    Haskell2010
  GHC-options:         -fhide-source-paths
  main-is:             TestMain.hs
  other-modules:       AsciiRenderTests
                     , HTMLRenderTests
                     , SampleTables
                     , TestQQDefs
  build-depends: base
               , html-parse
               , kvitable
               , microlens
               , pretty-show
               , tasty
               , tasty-hunit
               , template-haskell
               , text