packages feed

simple-tabular-0.1.0.0: simple-tabular.cabal

-- Initial simple-tabular.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

-- The name of the package.
name:                simple-tabular

-- The package version.  See the Haskell package versioning policy (PVP) 
-- for standards guiding when and how versions should be incremented.
-- http://www.haskell.org/haskellwiki/Package_versioning_policy
-- PVP summary:      +-+------- breaking API changes
--                   | | +----- non-breaking API additions
--                   | | | +--- code changes with no API change
version:             0.1.0.0

-- A short (one-line) description of the package.
synopsis:            Simple tabular-text formatter

-- A longer description of the package.
description:         This package has a simplistic formatter
                     that accepts a troff-style column descriptor
                     and a list of lists of strings, and produces
                     a string consisting of a formatted table.

-- URL for the project homepage or repository.
homepage:            http://github.com/BartMassey/simple-tabular

-- The license under which the package is released.
license:             MIT

-- The file containing the license text.
license-file:        COPYING

-- The package author(s).
author:              Bart Massey

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          bart@cs.pdx.edu

-- A copyright notice.
-- copyright:           

category:            Text

build-type:          Simple

-- Constraint on the version of Cabal needed to build this package.
cabal-version:       >=1.8

source-repository head
    type:            git
    location:        http://github.com/BartMassey/simple-tabular.git

source-repository this
    type:            git
    location:        http://github.com/BartMassey/simple-tabular.git
    tag:             v0.1

library
  -- Modules exported by the library.
  exposed-modules:     Text.SimpleTabular
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- Other library packages from which modules are imported.
  build-depends:       base ==4.5.*