packages feed

ace-0.0: ace.cabal

name:                ace
version:             0.0
synopsis:            Attempto Controlled English parser and printer
description:         Attempto Controlled English is a formally defined unambiguous language which
                     is a subset of the English language. This package provides a tokenizer,
                     parser and printer for that language. Specifically, it implements the
                     declarative mood and the interrogative mood.

                     The imperative mood is omitted at this time. Interpretation rules,
                     conversion to FoL, or any further analysis is not implemented by this
                     library.
license:             BSD3
license-file:        LICENSE
author:              Chris Done
maintainer:          chrisdone@gmail.com
copyright:           2014 Chris Done
category:            Linguistics
build-type:          Simple
cabal-version:       >=1.8

library
  hs-source-dirs:    src/
  ghc-options:       -Wall -O2
  exposed-modules:   ACE, ACE.Types.Syntax, ACE.Parsers, ACE.Tokenizer, ACE.Types.Tokens, ACE.Combinators
  build-depends:     attoparsec >= 0.11.1.0,
                     parsec >= 3.1.5,
                     data-default >= 0.5.3,
                     semigroups >= 0.12.2,
                     text >= 0.11.2.0,
                     base >= 4 && <5,
                     bifunctors

test-suite test
    type: exitcode-stdio-1.0
    main-is: Main.hs
    hs-source-dirs: test
    build-depends: base,
                   ace,
                   HUnit,
                   hspec,
                   parsec,
                   bifunctors,
                   text,
                   mtl