-
Notifications
You must be signed in to change notification settings - Fork 8
/
buchhaltung.cabal
171 lines (164 loc) · 5.26 KB
/
buchhaltung.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
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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
name: buchhaltung
version: 0.0.7
Bug-Reports: http://github.com/johannesgerer/buchhaltung/issues
License: MIT
License-file: LICENSE
Author: Johannes Gerer
Maintainer: Johannes Gerer <[email protected]>
Homepage: http://johannesgerer.com/buchhaltung
Stability: Experimental
category: Finance
synopsis: Automates most of your plain text accounting data entry in ledger format.
description:
Automatic import and deduplication (from CSV\/FinTS\/HBCI\/OFX), bayesian account matching, and efficient manual entry of <http://plaintextaccounting.org/ ledger> transactions.
.
See <https://github.com/johannesgerer/buchhaltung Readme> on Github.
tested-with: GHC == 7.10.1
cabal-version: >= 1.10
build-type: Simple
Extra-source-files:
README.md
example_output/add.md
example_output/add_multi_user.md
example_output/match.md
stack.yaml
config.yml
buchhaltung_autocomplete.bash
buchhaltung_autocomplete.zsh
exchange_rates/btc_eur
library
Hs-Source-Dirs: src
exposed-modules: Buchhaltung.Add
Buchhaltung.AQBanking
Buchhaltung.Ask
Buchhaltung.Common
Buchhaltung.Import
Buchhaltung.Importers
Buchhaltung.Match
Buchhaltung.Commandline
Buchhaltung.OptionParsers
Buchhaltung.Types
Buchhaltung.Uniques
Buchhaltung.Utils
Buchhaltung.ZipEdit2
Buchhaltung.Zipper
default-language: Haskell2010
build-depends:
Decimal >= 0.4.2
, ListLike
, MissingH
, aeson >= 1.0.0
, ansi-wl-pprint
, array
, async
, base >= 4.0.0.0 && < 5
, boxes
, bytestring
, lens
, cassava >= 0.4.1.0
, containers
, data-default
, deepseq
, directory
, edit-distance
, file-embed
, filepath
, formatting
, hashable
, haskeline
, hint
, hledger >= 1.1
, hledger-lib >= 1.1
, lifted-base
, megaparsec >= 5.0.0
, monad-control
, mtl
, optparse-applicative >= 0.13
, parsec
, process >= 1.1.0.2
, regex-compat
, regex-tdfa
, regex-tdfa-text
, safe
, semigroups
, split
, strict
, temporary
, text
, time
, transformers
, unordered-containers
, vector
, yaml
executable buchhaltung
Hs-Source-Dirs: src
main-is: main.hs
other-modules: Buchhaltung.Add
Buchhaltung.AQBanking
Buchhaltung.Ask
Buchhaltung.Common
Buchhaltung.Import
Buchhaltung.Importers
Buchhaltung.Match
Buchhaltung.Commandline
Buchhaltung.OptionParsers
Buchhaltung.Types
Buchhaltung.Uniques
Buchhaltung.Utils
Buchhaltung.ZipEdit2
Buchhaltung.Zipper
default-language: Haskell2010
ghc-options: -threaded
-fwarn-unused-binds
-fwarn-unused-matches
-fwarn-incomplete-patterns
build-depends:
Decimal >= 0.4.2
, ListLike
, MissingH
, aeson >= 1.0.0
, ansi-wl-pprint
, array
, async
, base >= 4.0.0.0 && < 5
, boxes
, bytestring
, lens
, cassava >= 0.4.1.0
, containers
, data-default
, deepseq
, directory
, edit-distance
, file-embed
, filepath
, formatting
, hashable
, haskeline
, hint
, hledger >= 1.1
, hledger-lib >= 1.1
, lifted-base
, megaparsec >= 5.0.0
, monad-control
, mtl
, optparse-applicative >= 0.13
, parsec
, process >= 1.1.0.2
, regex-compat
, regex-tdfa
, regex-tdfa-text
, safe
, semigroups
, split
, strict
, temporary
, text
, time
, transformers
, unordered-containers
, vector
, yaml
Source-repository head
Type: git
Location: http://github.com/johannesgerer/buchhaltung