47 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.6 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 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
 | 
						|
  Build-Depends:  base, containers, haskell98, directory, parsec, regex-compat,
 | 
						|
                  old-locale, time, HUnit #, QuickCheck >= 1 && < 2
 | 
						|
  Main-Is:        hledger.hs
 | 
						|
  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
 | 
						|
 |