update the cabal file

This commit is contained in:
Simon Michael 2008-10-10 04:05:46 +00:00
parent 67c203f316
commit 7c25dbc4a3
2 changed files with 26 additions and 6 deletions

4
README
View File

@ -5,8 +5,8 @@ Released under GPL version 3 or later.
This is a minimal haskell clone of John Wiegley's ledger
<http://newartisans.com/software/ledger.html>. 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:

View File

@ -5,7 +5,7 @@ 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.
demonstrates a functional implementation of ledger.
License: GPL
Stability: alpha
Author: Simon Michael <simon@joyful.com>
@ -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