-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.yaml
46 lines (39 loc) · 878 Bytes
/
package.yaml
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
name: getopt-generics
version: "0.13.1.0"
category: "Console, System"
synopsis: Create command line interfaces with ease
description: Create command line interfaces with ease
license: "BSD3"
author: "Linh Nguyen, Sönke Hahn"
copyright: "Zalora South East Asia Pte Ltd"
maintainer: "[email protected], [email protected]"
ghc-options: -Wall -fno-warn-name-shadowing
extra-source-files:
- docs/*
dependencies:
- base == 4.*
- base-compat >= 0.8
- base-orphans
- generics-sop >= 0.2.3 && < 0.6
- tagged
library:
source-dirs:
- src
exposed-modules:
- WithCli
- WithCli.Pure
tests:
spec:
main: "Spec.hs"
ghc-options: "-threaded -O0"
source-dirs:
- src
- test
- docs
dependencies:
- hspec >= 2.1.8
- QuickCheck
- silently
- filepath
- safe
github: soenkehahn/getopt-generics