-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhakocalc.cabal
65 lines (62 loc) · 2.16 KB
/
hakocalc.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
name: hakocalc
version: 4.1.3.0
description: A calculator of probability that a monster will die, in the Hakoniwa Islands.
homepage: https://github.com/masaniwasdp/Hakocalc#readme
license: MIT
license-file: LICENSE
author: masaniwa
copyright: 2019 masaniwa
build-type: Simple
data-files: assets/controller/cli-config.yaml
, assets/presenter/cli-config.yaml
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Hakocalc.Command
, Hakocalc.Command.DefeatProbability
, Hakocalc.Command.Model
, Hakocalc.Command.Presenter
, Hakocalc.Controller
, Hakocalc.Controller.CLI
, Hakocalc.Controller.CLIConfig
, Hakocalc.Controller.Helper
, Hakocalc.Interface.Stdio
, Hakocalc.Math.Calc
, Hakocalc.Math.Probability
, Hakocalc.Presenter
, Hakocalc.Presenter.CLI
, Hakocalc.Presenter.CLIConfig
ghc-options: -Wall -O2
build-depends: aeson
, base
, casing
, lens
, mtl
, optparse-applicative
, transformers
, yaml
default-language: Haskell2010
executable hakocalc
hs-source-dirs: app
main-is: Main.hs
other-modules: Paths_hakocalc
ghc-options: -Wall -O2
build-depends: base
, hakocalc
, optparse-applicative
, yaml
default-language: Haskell2010
test-suite hakocalc-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
other-modules: Hakocalc.Command.DefeatProbabilitySpec
, Hakocalc.Command.ModelSpec
, Hakocalc.Math.CalcSpec
, Hakocalc.Math.ProbabilitySpec
ghc-options: -Wall
build-depends: base
, hakocalc
, hspec
, mtl
default-language: Haskell2010