-
Notifications
You must be signed in to change notification settings - Fork 4
/
stocks.cabal
49 lines (46 loc) · 1.79 KB
/
stocks.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
name: stocks
version: 0.2.0.1
synopsis: Library for the IEX Trading API
description: Simple library for interacting with the IEX Trading API
homepage: https://github.com/dabcoder/stocks
license: BSD3
license-file: LICENSE
author: David Bouchare, Kristian Sällberg
maintainer: David Bouchare, Kristian Sällberg
copyright: 2018 David Bouchare, Kristian Sällberg
category: Net
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
library
exposed-modules: Net.Stocks, Net.IEX.Stats,
Net.IEX.Chart, Net.IEX.Company,
Net.IEX.Earnings, Net.IEX.DelayedQuote,
Net.IEX.Dividend, Net.IEX.EffectiveSpread,
Net.IEX.Financials, Net.IEX.NewsItem,
Net.IEX.OHLC, Net.IEX.Previous,
Net.IEX.PriceTime, Net.IEX.Quote,
Net.IEX.Relevant, Net.IEX.Split,
Net.IEX.VolumeByVenue, Net.IEX.Market,
Net.IEX.IntraDayStats, Net.IEX.RecentStats,
Net.IEX.RecordStats, Net.IEX.Book, Net.IEX.TimeSeries
build-depends: base == 4.*
, http-conduit
, aeson >= 0.8.0
, bytestring
, containers
, unordered-containers
, semigroups >= 0.18
hs-source-dirs: src
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/dabcoder/stocks.git
Test-Suite test-hspec
type: exitcode-stdio-1.0
main-is: Tests/Main.hs
build-depends: base,
stocks,
bytestring,
HUnit
default-language: Haskell2010