This repository was archived by the owner on Mar 21, 2020. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathfomobot.cabal
53 lines (48 loc) · 1.74 KB
/
fomobot.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
-- Initial fomobot.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: fomobot
version: 0.1.0.0
synopsis: A FOMO bot
-- description:
homepage: thoughtbot.com
license: MIT
license-file: LICENSE
author: thoughtbot
maintainer: [email protected]
-- copyright:
category: Web
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
executable fomobot
main-is: Main.hs
other-modules: FOMObot.App
FOMObot.Helpers.Algorithm
FOMObot.Helpers.CommandProcessor
FOMObot.Helpers.DMChannel
FOMObot.Helpers.FOMOChannel
FOMObot.Helpers.MessageProcessor
FOMObot.Helpers.Preferences
FOMObot.Types.AppState
FOMObot.Types.Bot
FOMObot.Types.BotConfig
FOMObot.Types.BotState
FOMObot.Types.ChannelState
FOMObot.Types.Command
FOMObot.Types.HistoryItem
default-extensions: OverloadedStrings
, NamedFieldPuns
, TemplateHaskell
build-depends: base >=4.8 && <4.9
, lens
, text
, hashmap
, slack-api
, hedis
, bytestring
, transformers
, parsec
, uri-bytestring
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -threaded