packages feed

readcsv-0.1: readcsv.cabal

name:                readcsv
version:             0.1
synopsis: Lightweight CSV parser/emitter based on ReadP
description: Parses and emits tables of strings formatted according to RFC 4180,
             /"The common Format and MIME Type for Comma-Separated Values (CSV) Files"/.
             Has no dependencies on parsec or any libraries other than base.
homepage:            https://github.com/george-steel/readcsv
license:             MIT
license-file:        COPYING
author:              George Steel
maintainer:          george.steel@gmail.com
copyright:           2017 George Steel
category:            Web
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Text.Read.CSV
  build-depends:       base >= 4 && < 5
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/george-steel/readcsv