name: SimpleTableGenerator
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.2.0.0
synopsis: Simple table generator
description: Pass a 2D-list of strings and get a single string with table contents.
license: GPL-3
license-file: LICENSE
author: klntsky
maintainer: klntsky@openmailbox.org
category: Text
build-type: Simple
extra-source-files: README.md
-- Constraint on the version of Cabal needed to build this package.
cabal-version: >=1.10
library
-- Modules exported by the library.
exposed-modules: Text.SimpleTableGenerator
-- Modules included in this library but not exported.
-- other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
-- Other library packages from which modules are imported.
build-depends: base >=4.8 && <5, split >=0.2 && <0.3
hs-source-dirs: src
default-language: Haskell2010
source-repository head
type: git
location: git://github.com/8084/SimpleTableGenerator.git
Test-Suite test-main
default-language: Haskell2010
type: detailed-0.9
test-module: Test
build-depends: base, Cabal >= 1.9.2, SimpleTableGenerator >= 0.2.0