-
Notifications
You must be signed in to change notification settings - Fork 1
/
HaskBot.cabal
80 lines (77 loc) · 2.61 KB
/
HaskBot.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
cabal-version: >=1.10
-- Initial package description 'HaskBot.cabal' generated by 'cabal init'.
-- For further documentation, see http://haskell.org/cabal/users-guide/
name: HaskBot
version: 0.1.0.0
-- synopsis:
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Ange Yobo
maintainer: [email protected]
-- copyright:
-- category:
build-type: Simple
extra-source-files: CHANGELOG.md
executable HaskBot
main-is: Main.hs
other-modules: DataProcessor
DataFetcher
IndicatorEngine
DisplayManager
SignalGenerator
build-depends: base >=4.13 && <4.14
, aeson >=2.2.1.0
, bytestring
, text
, time
, wreq
, streamly
, vector >=0.13.1.0
, unordered-containers >=0.2.19.1
, HUnit >=1.6.2.0
, random >=1.2.1.1
, wuss
, websockets >=0.12.7.3
, http-conduit >=2.3.8.3
, http-client >=0.7.14
, http-client-tls
, http-types
, hspec
, QuickCheck >=2.14.2
, containers
, brick >= 0.64
, ansi-terminal >=1.0
hs-source-dirs: app src
default-language: Haskell2010
test-suite HaskBotTest
type: exitcode-stdio-1.0
main-is: MainTest.hs
other-modules: DataFetcherTest
DataProcessorTest
SignalGeneratorTest
DisplayManagerTest
IndicatorEngineTest
DataFetcher
DataProcessor
DisplayManager
IndicatorEngine
SignalGenerator
build-depends: base >=4.13 && <4.14
, aeson
, hspec
, QuickCheck
, bytestring
, time
, text
, HUnit
, streamly
, random
, vector
, unordered-containers
, websockets
, wuss
, network
hs-source-dirs: test src app
default-language: Haskell2010