]> Git — Sourcephile - haskell/symantic-cli.git/blob - symantic-cli.cabal
init
[haskell/symantic-cli.git] / symantic-cli.cabal
1 name: symantic-cli
2 -- PVP: +-+------- breaking API changes
3 -- | | +----- non-breaking API additions
4 -- | | | +--- code changes with no API change
5 version: 0.0.0.20180410
6 category: Data Structures
7 synopsis: Library for Command Line Interface (CLI)
8 description: Symantics for CLI.
9 extra-doc-files:
10 license: GPL-3
11 license-file: COPYING
12 stability: experimental
13 author: Julien Moutinho <julm+symantic@autogeree.net>
14 maintainer: Julien Moutinho <julm+symantic@autogeree.net>
15 bug-reports: Julien Moutinho <julm+symantic@autogeree.net>
16 -- homepage:
17
18 build-type: Simple
19 cabal-version: 1.24
20 tested-with: GHC==8.4.3
21 extra-source-files:
22 stack.yaml
23 extra-tmp-files:
24
25 Source-Repository head
26 location: git://git.autogeree.net/symantic
27 type: git
28
29 Library
30 exposed-modules:
31 Language.Symantic.CLI
32 Language.Symantic.CLI.Fixity
33 Language.Symantic.CLI.Help
34 Language.Symantic.CLI.Plain
35 Language.Symantic.CLI.Read
36 Language.Symantic.CLI.Sym
37 default-language: Haskell2010
38 default-extensions:
39 FlexibleContexts
40 FlexibleInstances
41 LambdaCase
42 MultiParamTypeClasses
43 NamedFieldPuns
44 NoImplicitPrelude
45 RecordWildCards
46 ScopedTypeVariables
47 TupleSections
48 TypeFamilies
49 ghc-options:
50 -Wall
51 -Wincomplete-uni-patterns
52 -Wincomplete-record-updates
53 -fno-warn-tabs
54 -- -fhide-source-paths
55 build-depends:
56 base >= 4.10 && < 5
57 , containers >= 0.5
58 , text >= 1.2
59 , transformers >= 0.5
60 , megaparsec >= 6.3
61 , symantic-document