packages feed

rabocsv2qif-1.1.6: rabocsv2qif.cabal

Name:           rabocsv2qif
Version:        1.1.6
Synopsis   :    A library and program to create QIF files from Rabobank CSV exports.
License:        GPL
License-file:   LICENSE
Author:         Sander Venema
Maintainer:     sander.venema@gmail.com
Build-Type:     Simple
Cabal-Version:  >=1.2
extra-source-files: Rabobank.hs ListUtils.hs
Category:       Finance
Description:    The rabocsv2qif package exposes a library, Rabobank, and an
                executable, rabocsv2qif. With the executable you can quickly
                create a timestamped QIF file from a Rabobank CSV file with
                transactions. The library exposes a method, toQif, that can be
                used to create QIF data in code. It simply takes a String and
                returns a String.

library
    Build-Depends:   base >= 3 && < 5,
                     time,
                     split >= 0.2.1.1,
                     old-locale >= 1.0.0.4  
    Exposed-modules: Rabobank
    Other-modules:   ListUtils

Executable rabocsv2qif
    Main-is:        Main.hs
    Build-Depends:  base >= 3 && < 5
    Other-modules:  Rabobank,
                    ListUtils