packages feed

ace-0.6: ace.cabal

name:                ace
version:             0.6
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
                     ACE.Types.Pretty
                     ACE.Pretty
                     ACE.Html
  build-depends:     attoparsec >= 0.10.4.0,
                     parsec >= 3.1.5,
                     data-default >= 0.5.3,
                     text >= 0.11.2.0,
                     base >= 4 && <5,
                     blaze-html >= 0.5.1.0,
                     blaze-markup >= 0.5.2.0

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