packages feed

ofx-0.4.2.0: ofx.cabal

-- This Cabal file generated using the Cartel library.
-- Cartel is available at:
-- http://www.github.com/massysett/cartel
--
-- Script name used to generate: gen-ofx-cabal
-- Generated on: 2016-07-12 21:19:09.028404 EDT
-- Cartel library version: 0.16.0.0

name: ofx
version: 0.4.2.0
cabal-version: >= 1.10
license: BSD3
license-file: LICENSE
build-type: Simple
copyright: Copyright (c) 2016 Omari Norman
author: Omari Norman
maintainer: omari@smileystation.com
stability: Experimental
homepage: http://www.github.com/massysett/ofx
bug-reports: http://www.github.com/massysett/ofx/issues
synopsis: Parser for OFX data
description:
  A parser for Open Financial Exchange (OFX) financial data. This
  handles OFX version 1.03, which is documented at http://www.ofx.net
  This also handles QFX, which is OFX plus some minor additions made
  by Intuit, the publishers of Quicken.
  .
  The parser will place all the data into a tree, which you can query
  for whatever data you may need, although you will need to be
  familiar with the OFX spec to do this. There is also a Transaction
  type which you can easily parse from the tree; this will contain
  most, perhaps all, of the data you will be interested in if your OFX
  file is from a bank or credit card account.
  .
  All the OFX and QFX files I have seen use the format from the 1.0
  series of OFX, which is primarily SGML based. OFX version 2 is XML
  based.  This parser likely will not work on those files.
category: Finance

Library
  exposed-modules:
    Data.OFX
  ghc-options:
    -Wall
  default-language: Haskell2010
  hs-source-dirs:
    lib
  build-depends:
      base >= 4.8 && < 5
    , parsec >= 3.1
    , pretty >= 1.1
    , time >= 1.4

source-repository head
  type: git
  location: https://github.com/massysett/ofx.git

Executable renderOfx
  main-is: renderOfx.hs
  other-modules:
    Data.OFX
  hs-source-dirs:
    exe
  ghc-options:
    -Wall
  default-language: Haskell2010
  hs-source-dirs:
    lib
  build-depends:
      base >= 4.8 && < 5
    , parsec >= 3.1
    , pretty >= 1.1
    , time >= 1.4

Executable renderTransactions
  main-is: renderTransactions.hs
  other-modules:
    Data.OFX
  hs-source-dirs:
    exe
  ghc-options:
    -Wall
  default-language: Haskell2010
  hs-source-dirs:
    lib
  build-depends:
      base >= 4.8 && < 5
    , parsec >= 3.1
    , pretty >= 1.1
    , time >= 1.4