author: Julien Moutinho bug-reports: http://doc.autogeree.net/hcompta/bugs build-type: Simple cabal-version: >= 1.8 category: Finance -- data-dir: data -- data-files: description: extra-source-files: Test.hs extra-tmp-files: homepage: http://doc.autogeree.net/hcompta license: GPL license-file: COPYING maintainer: Julien Moutinho name: hcompta-lib stability: experimental synopsis: hcompta tested-with: GHC==7.8.4 version: 0.0.0 source-repository head type: git location: git://git.autogeree.net/hcompta Flag dev Description: Turn on development settings. Default: False Flag double Description: Use old Double number representation (instead of Decimal), for testing/benchmarking. Default: False Library -- should set patchlevel here as in Makefile cpp-options: -DPATCHLEVEL=0 if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: -Wall -fno-warn-tabs -O0 -ddump-splices -- -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures -- -fno-warn-type-defaults -fno-warn-orphans else ghc-options: -Wall -fno-warn-tabs -O2 if flag(double) cpp-options: -DDOUBLE -- default-language: Haskell2010 exposed-modules: Hcompta Hcompta.Calc Hcompta.Calc.Balance Hcompta.Calc.Print Hcompta.Calc.Register Hcompta.Calc.Stats Hcompta.Format Hcompta.Format.CSV Hcompta.Format.Ledger Hcompta.Format.Ledger.Journal Hcompta.Format.Ledger.Read Hcompta.Model Hcompta.Model.Account Hcompta.Model.Amount Hcompta.Model.Amount.Conversion Hcompta.Model.Amount.Conversion.Historical Hcompta.Model.Amount.Quantity Hcompta.Model.Amount.Style Hcompta.Model.Amount.Unit Hcompta.Model.Date Hcompta.Model.Filter Hcompta.Model.Transaction Hcompta.Model.Transaction.Periodic Hcompta.Model.Transaction.Posting Hcompta.Model.Transaction.Tag Hcompta.Util build-depends: base >= 4.3 && < 5 , containers , Decimal , filepath , HUnit , parsec , safe >= 0.2 , time test-suite Test type: exitcode-stdio-1.0 main-is: Main.hs hs-source-dirs: Test ghc-options: -Wall -fno-warn-unused-do-bind -fno-warn-name-shadowing -fno-warn-missing-signatures ghc-options: -fno-warn-type-defaults -fno-warn-orphans -- default-language: Haskell2010 build-depends: hcompta-lib , base >= 4.3 && < 5 , containers , HUnit , safe , test-framework , test-framework-hunit