packages feed

antfarm-0.1.0.0: antfarm.cabal

-- Initial antfarm.cabal generated by cabal init.  For further
-- documentation, see http://haskell.org/cabal/users-guide/

name:                antfarm
version:             0.1.0.0
synopsis:            Referring expressions for definitions
-- description:
homepage:            http://hub.darcs.net/kowey/antfarm
license:             BSD3
license-file:        LICENSE
author:              Eric Kow
maintainer:          eric.kow@gmail.com
-- copyright:
category:            Natural language processing
build-type:          Simple
cabal-version:       >=1.8

library
  exposed-modules:   NLP.Antfarm
                     NLP.Antfarm.Cardinality
                     NLP.Antfarm.Demo
                     NLP.Antfarm.English
                     NLP.Antfarm.History
                     NLP.Antfarm.Internal
                     NLP.Antfarm.Refex

  build-depends:       base < 5
               ,       containers
               ,       minimorph >= 0.1.1
               ,       text
               --      Begin NLP.Antfarm.Demo only :-/
               ,       mtl
               ,       parsec
               ,       transformers
               --      End NLP.Antfarm.Demo only

executable antfarm
  main-is:             antfarm.hs
  hs-source-dirs:      antfarm
  -- other-modules:
  build-depends:       base < 5
               ,       antfarm
               ,       containers
               ,       minimorph
               ,       mtl
               ,       text


test-suite antfarm-test
  type:             exitcode-stdio-1.0
  main-is:          antfarm-test.hs
  hs-source-dirs:   test
  build-Depends:    base
               ,    antfarm
               ,    HUnit
               ,    minimorph
               ,    test-framework
               ,    test-framework-hunit
               ,    text
               ,    transformers