author: Julien Moutinho -- bug-reports: http://bug.autogeree.net/hcompta build-type: Simple cabal-version: >= 1.24 category: Finance -- data-dir: data -- data-files: description: Accounting. extra-source-files: extra-tmp-files: -- homepage: http://doc.autogeree.net/hcompta license: GPL-3 license-file: COPYING maintainer: Julien Moutinho name: hcompta-lib stability: experimental synopsis: Accounting software. tested-with: GHC==8.0.1 version: 3.20170704 Source-Repository head location: git://git.autogeree.net/hcompta type: git Flag dev Default: False Description: Turn on development settings. Manual: True Flag dump Default: False Description: Dump some intermediate files. Manual: True Flag prof Default: False Description: Turn on profiling settings. Manual: True Flag threaded Default: False Description: Enable threads. Manual: True Library default-extensions: NoImplicitPrelude BangPatterns DeriveDataTypeable FlexibleContexts FlexibleInstances GeneralizedNewtypeDeriving MultiParamTypeClasses NamedFieldPuns OverloadedStrings RecordWildCards ScopedTypeVariables TupleSections TypeApplications TypeFamilies TypeOperators ghc-options: -Wall -fno-warn-tabs if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto -- if flag(double) -- cpp-options: -DDOUBLE if flag(dump) ghc-options: -ddump-simpl -ddump-stg -ddump-to-file default-language: Haskell2010 exposed-modules: Hcompta Hcompta.Balance Hcompta.Data Hcompta.Date Hcompta.GL Hcompta.Lib.Foldable Hcompta.Lib.Strict Hcompta.Quantity build-depends: base >= 4.6 && < 5 , containers >= 0.5 && < 0.6 -- NOTE: needed for Data.Map.Strict , Decimal , deepseq >= 1.4.0.0 && < 1.5 -- NOTE: needed for NFData (Const a b) , directory , filepath -- , integer-gmp , mono-traversable , semigroups , strict , text , time , transformers >= 0.4 && < 0.6 -- NOTE: needed for Control.Monad.Trans.Except , treemap , unix >= 2.7.2.0 -- , symantic -- , trace -- , ansi-terminal >= 0.4 && < 0.7 -- , array -- , collections-api -- , collections-base-instances -- , fingertree -- , HUnit -- , interval -- , lens -- , mmorph -- , mtl >= 2.0 -- , parsec >= 3.1.2 && < 4 -- NOTE: needed for Text.Parsec.Text -- , parsec-error-custom -- , regex-base -- , regex-tdfa -- , regex-tdfa-text -- , safe >= 0.2 Test-Suite hcompta-test type: exitcode-stdio-1.0 default-language: Haskell2010 default-extensions: NoImplicitPrelude ghc-options: -Wall -fno-warn-tabs -main-is Test hs-source-dirs: Hcompta main-is: Test.hs other-modules: -- Account.Test Balance.Test if flag(threaded) ghc-options: -threaded -rtsopts -with-rtsopts=-N if flag(dev) cpp-options: -DDEVELOPMENT ghc-options: if flag(prof) cpp-options: -DPROFILING ghc-options: -fprof-auto build-depends: base >= 4.6 && < 5 , containers >= 0.5 && < 0.6 , Decimal , hcompta-lib , mono-traversable , semigroups , strict , tasty >= 0.11 , tasty-hunit , text , transformers >= 0.4 && < 0.6 , treemap