-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathfints2ledger.cabal
More file actions
157 lines (151 loc) · 3.56 KB
/
Copy pathfints2ledger.cabal
File metadata and controls
157 lines (151 loc) · 3.56 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
cabal-version: 3.0
name: fints2ledger
version: 1.3.3
synopsis: Download transactions from FinTS into a ledger journal
description: Please see the README on GitHub at <https://github.com/MoritzR/fints2ledger#readme>
category: Finance, Console
homepage: https://github.com/MoritzR/fints2ledger#readme
bug-reports: https://github.com/MoritzR/fints2ledger/issues
author: Moritz Andrich
maintainer: moritz.rumpf@gmail.com
copyright: 2025 Moritz Andrich
license: MIT
license-file: LICENSE
build-type: Simple
extra-doc-files:
README.md
CHANGELOG.md
LICENSE
data-files:
data/example.json
data/pyfints.py
data/template.txt
source-repository head
type: git
location: https://github.com/MoritzR/fints2ledger
library fints2ledger-lib
exposed-modules:
App
Completion
Config.AppConfig
Config.CliConfig
Config.Files
Config.StartupChecks
Config.YamlConfig
Config.EnvConfig
Config.Banks
Dates.Parser
Ledger
Lib
Matching.Matching
Matching.Parser
Prompt
Transactions
UI.BankSelectionUI
UI.ConfigFields
UI.ConfigUI
UI.Helper
Utils
other-modules:
Paths_fints2ledger
autogen-modules:
Paths_fints2ledger
hs-source-dirs:
src
default-extensions:
DuplicateRecordFields
OverloadedRecordDot
OverloadedStrings
NoFieldSelectors
BlockArguments
LambdaCase
ghc-options:
-Wall
-Wcompat
-Widentities
-Wmissing-export-lists
-Wmissing-home-modules
-Wpartial-fields
-Wredundant-constraints
-Wno-unused-do-bind
-Wno-missing-signatures
build-depends:
aeson >=2.0.3 && <2.3
, base >=4.17 && <5
, base16-bytestring >=1.0.2 && <1.1
, brick >=1.4 && <2.11
, bytestring >=0.11.4 && <0.13
, cassava >=0.5.3 && <0.6
, containers >=0.6.5 && <0.9
, cryptohash-md5 >=0.11.101 && <0.12
, directory >=1.3.6 && <1.4
, file-embed >=0.0.15 && <0.1
, filepath >=1.4.2 && <1.6
, generic-lens >=2.2.2 && <2.3
, haskeline >=0.8.2 && <0.9
, hledger-lib >=1.27.1 && <2
, lens >=5.1.1 && <5.4
, optparse-applicative >=0.17.1 && <0.19
, regex-tdfa >=1.3.2 && <1.4
, temporary >=1.3 && <1.4
, text >=2.0 && <2.2
, text-format-heavy == 0.1.5.3-patched
, time >=1.11.1 && <1.15
, transformers >=0.5.6 && <0.7
, typed-process >=0.2.11 && <0.3
, vector >=0.12.3 && <1.14
, vty >=6.0 && <6.5
, vty-crossplatform >=0.4 && <0.5
, yaml >=0.11.11 && <0.12
default-language: GHC2021
executable fints2ledger
main-is: Main.hs
hs-source-dirs:
app
ghc-options:
-Wall
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
fints2ledger-lib
, base
default-language: GHC2021
test-suite fints2ledger-test
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
ConfigSpec
Dates.ParserSpec
Matching.MatchingSpec
Matching.ParserSpec
PromptSpec
TransactionSpec
UtilsSpec
hs-source-dirs:
test
default-extensions:
DuplicateRecordFields
OverloadedRecordDot
OverloadedStrings
NoFieldSelectors
BlockArguments
ghc-options:
-Wall
-Wno-missing-signatures
-Wno-unused-do-bind
-threaded
-rtsopts
-with-rtsopts=-N
build-depends:
QuickCheck >= 2.14 && <= 2.16
, aeson
, base
, containers
, fints2ledger-lib
, sydtest >= 0.15 && <= 0.23
, transformers
, text
, time
, yaml
default-language: GHC2021