hledger/hledger.cabal
Simon Michael a15d1d31cf README
2008-10-01 08:51:08 +00:00

27 lines
1.1 KiB
Plaintext

Name: hledger
Version: 0.1
Category: Finance
Synopsis: A ledger-compatible text-based accounting tool.
Description: This is a minimal haskell clone of John Wiegley's ledger
<http://newartisans.com/software/ledger.html>. hledger does basic
register & balance reporting from a plain text ledger file, and
demonstrates a (naive) purely functional implementation of ledger.
License: GPL
Stability: alpha
Author: Simon Michael <simon@joyful.com>
Maintainer: Simon Michael <simon@joyful.com>
Homepage: http://joyful.com/Ledger#hledger
Tested-With: GHC
Build-Type: Simple
License-File: LICENSE
Extra-Source-Files: README sample.ledger
Extra-Tmp-Files:
Cabal-Version: >= 1.2
Executable hledger
Main-Is: hledger.hs
Build-Depends: base, containers, haskell98, directory, parsec, regex-compat, HUnit, QuickCheck
Other-Modules: Account AccountName Amount Currency LedgerEntry LedgerFile Ledger LedgerTransaction
Models Options Parse Setup Tests TimeLog Transaction Types Utils