From 7c25dbc4a3d1b213b69e960ec21629751a79a85e Mon Sep 17 00:00:00 2001 From: Simon Michael Date: Fri, 10 Oct 2008 04:05:46 +0000 Subject: [PATCH] update the cabal file --- README | 4 ++-- hledger.cabal | 28 ++++++++++++++++++++++++---- 2 files changed, 26 insertions(+), 6 deletions(-) diff --git a/README b/README index 2fc637891..f36150f52 100644 --- a/README +++ b/README @@ -5,8 +5,8 @@ Released under GPL version 3 or later. This is a minimal haskell clone of John Wiegley's ledger . hledger does basic -register & balance reports, and demonstrates a (naive) purely -functional implementation of ledger. +register & balance reports, and demonstrates a functional implementation +of ledger. Installation: diff --git a/hledger.cabal b/hledger.cabal index b6284c655..b1ec750cc 100644 --- a/hledger.cabal +++ b/hledger.cabal @@ -5,7 +5,7 @@ Synopsis: A ledger-compatible text-based accounting tool. Description: This is a minimal haskell clone of John Wiegley's ledger . hledger does basic register & balance reporting from a plain text ledger file, and - demonstrates a (naive) purely functional implementation of ledger. + demonstrates a functional implementation of ledger. License: GPL Stability: alpha Author: Simon Michael @@ -19,8 +19,28 @@ Extra-Tmp-Files: Cabal-Version: >= 1.2 Executable hledger + Build-Depends: base, containers, haskell98, directory, parsec, regex-compat, + old-locale, time, HUnit, QuickCheck >= 1 && < 2 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 + Other-Modules: + BalanceCommand + Options + PrintCommand + RegisterCommand + Setup + Tests + Ledger + Ledger.Account + Ledger.AccountName + Ledger.Amount + Ledger.Currency + Ledger.Entry + Ledger.RawLedger + Ledger.Ledger + Ledger.RawTransaction + Ledger.Parse + Ledger.TimeLog + Ledger.Transaction + Ledger.Types + Ledger.Utils