-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcsv2ledger.cabal
37 lines (35 loc) · 1.13 KB
/
csv2ledger.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: csv2ledger
version: 0
synopsis: Convert accounting data from CSV to Ledger format
description: Convert accounting data from CSV to Ledger format.
license: BSD3
license-file: LICENSE
author: Peter Simons
maintainer: [email protected]
tested-with: GHC == 8.8.4 || == 8.10.2
category: Finance
homepage: https://github.com/peti/csv2ledger
build-type: Simple
cabal-version: >= 1.10
source-repository head
type: git
location: https://github.com/peti/csv2ledger
library
exposed-modules: Csv2Ledger
Csv2Ledger.Camt
hs-source-dirs: src
build-depends: base > 4.13 && < 5
, Decimal
, bytestring
, cassava
, hledger-lib >= 1.27
, megaparsec
, mtl
, text
, time
, utf8-string
, vector
default-language: Haskell2010
other-extensions: OverloadedStrings
ghc-options: -Wall -Wcompat -Wincomplete-uni-patterns -Wincomplete-record-updates
-Wredundant-constraints