packages feed

minimorph-0.1.6.0: minimorph.cabal

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

name:                minimorph
version:             0.1.6.0
synopsis:            English spelling functions with an emphasis on simplicity.
description:         A set of simplistic functions capturing the more regular
                     parts of English spelling (for generation, not parsing).
                     You will need to complement this with some account for
                     irregular nouns/verbs. This package is not meant to provide
                     anything resembling a full account of English morphology
                     (something like Functional Morphology or sequor could be
                     better suited). The main goal is to provide something cheap
                     and cheerful with no learning curve, that you can use until
                     your application calls for more robustness.
                     See <https://github.com/Mikolaj/miniutter> for a simple
                     use case.
homepage:            https://github.com/Mikolaj/minimorph
bug-reports:         https://github.com/Mikolaj/minimorph/issues
license:             BSD3
license-file:        LICENSE
author:              Eric Kow
maintainer:          Mikolaj Konarski <mikolaj.konarski@funktory.com>
-- copyright:
category:            Natural Language Processing
build-type:          Simple
cabal-version:       >=1.8

source-repository head
  type:               git
  location:           git://github.com/Mikolaj/minimorph.git

library
  exposed-modules:     NLP.Minimorph.English
                       NLP.Minimorph.Number
                       NLP.Minimorph.Util
  -- other-modules:
  build-depends:       base < 5
               ,       text

test-suite test-minimorph
  type:       exitcode-stdio-1.0
  main-is:    test-minimorph.hs
  other-modules: NLP.Minimorph.EnglishTest
  hs-Source-Dirs: test
  build-depends:       base < 5
               ,       HUnit
               ,       minimorph
               ,       test-framework
               ,       test-framework-hunit
               ,       text