-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbtx.cabal
91 lines (85 loc) · 3.02 KB
/
btx.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
name: btx
version: 1.3.0
description: See README <https://github.com/MWRuszczycky/btx#readme>
homepage: https://github.com/MWRuszczycky/btx#readme
bug-reports: https://github.com/MWRuszczycky/btx/issues
author: Mark W. Ruszczycky
maintainer: [email protected]
copyright: 2018 Mark W. Ruszczycky
license: BSD3
license-file: LICENSE
build-type: Simple
cabal-version: >= 1.10
extra-source-files: README.md
executable btx
hs-source-dirs: app
main-is: Main.hs
default-language: Haskell2010
ghc-options: -O2 -W
build-depends: base >=4.7 && <5
, btx-internal
, mtl
, text
library btx-internal
exposed-modules: Controller.Commands
, Controller.Controller
, Controller.BtxMonad
, Model.BtxState
, Model.Core.External
, Model.Core.ErrMonad
, Model.Core.Types
, Model.Matcher
, Model.Macros
, Model.BibTeX.Resources
, Model.Parsers.BibTex
, Model.Parsers.Config
, Model.Parsers.Core
, View.View
, View.Core
, View.Help
, Paths_btx
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -W
build-depends: base >=4.7 && <5
, ansi-terminal
, attoparsec
, bytestring
, containers
, directory
, microlens
, mtl
, process
, temporary
, template-haskell
, text
, wreq
test-suite parsing
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: ModelSpec/Parsers/Config.hs
build-depends: base >=4.7 && <5
, btx-internal
, hspec
, text
default-language: Haskell2010
test-suite matcher
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: ModelSpec/Matcher.hs
build-depends: base >=4.7 && <5
, btx-internal
, hspec
, text
default-language: Haskell2010
test-suite mock
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Mock/MockApp.hs
build-depends: base >=4.7 && <5
, btx-internal
, directory
, hspec
, mtl
, text
default-language: Haskell2010