packages feed

tablize-1.0.0: tablize.cabal

name:                tablize
version:             1.0.0
synopsis:            Pretty-printing of CSV files
description:         Command-line utility to pretty-print CSV files with custom
                     visual decoration and column alignments.
homepage:            https://github.com/lovasko/tablize
license:             OtherLicense
license-file:        LICENSE
author:              Daniel Lovasko <daniel.lovasko@gmail.com>
maintainer:          Daniel Lovasko <daniel.lovasko@gmail.com>
copyright:           2017 Daniel Lovasko
category:            Text
build-type:          Simple
cabal-version:       >=1.10

executable tablize
  hs-source-dirs:      src
  main-is:             Main.hs
  other-modules:       Options
  build-depends:       base > 4.7 && < 5
                     , attoparsec
                     , comma
                     , optparse-applicative
                     , tabl
                     , text
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/lovasko/tablize