packages feed

ofx-0.2.0.0: ofx.cabal

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

-- The name of the package.
name:                ofx

-- 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.2.0.0

-- A short (one-line) description of the package.
synopsis:            Parser for OFX data

-- A longer description of the package.
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, if not 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. If this parser works on those files, consider it a happy
  accident.

  .

  The OFX spec is available at <http://www.ofx.net>

-- URL for the project homepage or repository.
homepage:            http://www.github.com/massysett/ofx

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

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

-- The package author(s).
author:              Omari Norman

-- An email address to which users can send suggestions, bug reports, and 
-- patches.
maintainer:          omari@smileystation.com

-- A copyright notice.
-- copyright:           

category:            Finance

build-type:          Simple

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


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

library
  -- Modules exported by the library.
  ghc-options: -Wall

  exposed-modules:
      Data.OFX
  
  -- Modules included in this library but not exported.
  -- other-modules:       
  
  -- Other library packages from which modules are imported.
  build-depends:
      base ==4.6.*
    , explicit-exception ==0.1.*
    , parsec ==3.1.*
    , pretty ==1.1.*
    , time ==1.4.*