-
Notifications
You must be signed in to change notification settings - Fork 1
/
simfin.cabal
92 lines (84 loc) · 3.07 KB
/
simfin.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
cabal-version: 2.4
name: simfin
version: 1.0.0
synopsis: A library to fetch and parse financial data from the SimFin(+) API.
homepage: https://github.com/414owen/simfin
license: MIT
license-file: LICENSE
author: Owen Shepherd
maintainer: [email protected]
category: Web, Finance
extra-source-files: CHANGELOG.md
description:
This library aims to wrap the [SimFin(+)](https://simfin.com/) API
as completely as possible. SimFin provides fundamental financial data.
library
exposed-modules: SimFin.Plus
, SimFin.Free
, SimFin.Common
, SimFin.Types.BalanceSheet
, SimFin.Types.CashFlow
, SimFin.Types.CompanyInfo
, SimFin.Types.CompanyListing
, SimFin.Types.Derived
, SimFin.Types.FiscalPeriod
, SimFin.Types.Industry
, SimFin.Types.Prices
, SimFin.Types.PricesAndRatios
, SimFin.Types.PricesQuery
, SimFin.Types.ProfitAndLoss
, SimFin.Types.Ratios
, SimFin.Types.StatementQuery
, SimFin.Types.StockRef
, SimFin.Types.StringFrac
, SimFin.Util
other-modules: SimFin.Internal
build-depends: base >= 4.13.0.0 && < 5
, composition-extra
, http-client-tls
, http-client
, exceptions
, bytestring
, http-types
, utf8-string
, aeson >=1.5.6.0 && < 2.1
, text
, time
, unordered-containers
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall
test-suite simfin-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Test.hs
build-depends: base >= 4.13.0.0 && < 5
, simfin
, aeson
, text
, tasty
, tasty-hunit
common examples-common
default-language: Haskell2010
hs-source-dirs: examples
ghc-options: -Wall
build-depends: base >= 4.13.0.0 && < 5
, simfin
, time
, Chart >= 1.9.3 && < 1.9.4
, SVGFonts < 1.8
, Chart-diagrams >= 1.9.3 && < 1.9.4
, text
, simfin
executable graph-prices
import: examples-common
main-is: Prices.hs
executable graph-eps
import: examples-common
main-is: EarningsPerShare.hs
build-depends: containers
, multi-containers
executable graph-relative-performance
import: examples-common
main-is: RelativePerformance.hs