-
Notifications
You must be signed in to change notification settings - Fork 0
/
tasty-tmux.cabal
47 lines (41 loc) · 1.46 KB
/
tasty-tmux.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
name: tasty-tmux
version: 0.1.0.4
synopsis: Terminal user acceptance testing (UAT) via tmux
description:
Library for user acceptance testing (UAT) using tmux as the
vehicle for running programs and interacting with them.
.
See "Test.Tasty.Tmux" for usage examples and API documentation.
license: AGPL-3
license-file: LICENSE
author: Róman Joost and Fraser Tweedale
maintainer: [email protected]
copyright: Copyright 2017-2019 Róman Joost and Fraser Tweedale
category: Testing
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md,
CHANGELOG.md
tested-with:
GHC ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.5 || == 9.6.1
homepage: https://github.com/purebred-mua/tasty-tmux
bug-reports: https://github.com/purebred-mua/tasty-tmux/issues
source-repository head
type: git
location: https://github.com/purebred-mua/tasty-tmux.git
library
hs-source-dirs: src
ghc-options: -Wall -Wredundant-constraints
exposed-modules: Test.Tasty.Tmux
-- other-modules:
other-extensions: FlexibleContexts, FlexibleInstances, RankNTypes
build-depends:
base >=4.11 && <5
, mtl >=2.2 && <2.4
, bytestring >=0.10 && <0.12
, text >=1.2 && <3
, typed-process >=0.2.4 && <0.3
, regex-posix >= 0.95
, tasty >= 1.2
, tasty-hunit >= 0.10
default-language: Haskell2010