packages feed

haslo-0.1.3: haslo.cabal

Name:		haslo
Version:	0.1.3
License:	BSD3
License-file: license
Author:		Bartosz Wojcik
Maintainer:	Bartosz Wojcik <bartoszmwojcik@gmail.com>
Copyright:  Copyright (c) 2011 Bartosz Wojcik
Category:	Finance
Synopsis:	Loan calculator engine.
Stability:  experimental
Build-type:	Simple
Description: Loan calculator engine implementing rules mentioned in paper "Haskell Loan Library".
             See more here: https://github.com/bartoszw/haslo/blob/master/haslo.pdf.
             Acronym from Haskell Loan.

Cabal-Version: >=1.2.3

library
  Build-Depends:	base >= 3 && < 5, old-time, wtk >= 0.2, mtl
  Exposed-Modules: Haslo
  Other-Modules: Haslo.BasicType,
                 Haslo.CalcCalendar,
                 Haslo.Parameters,
                 Haslo.ErrorHandling,
                 Haslo.InstalmentPlan,
                 Haslo.InstalmentPlanProps,
                 Haslo.CalcConfigurationType,
                 Haslo.CalcConstructors,
                 Haslo.Calculator

Executable hasloQC
  Build-Depends:	old-time, QuickCheck >= 2.5, mtl, time, wtk
  Other-Modules: Haslo.HasloQCTestL
  Main-Is: HasloQC.hs

Executable hasloSample
  Build-Depends:	old-time, QuickCheck, mtl, time, wtk
  Other-Modules: Haslo.HasloQCTestL
  Main-Is: Sample.hs