minimorph-0.1.0.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.0.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.
homepage: http://darcsden.com/kowey/minimorph
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
source-repository head
type: darcs
location: http://darcsden.com/kowey/minimorph
library
exposed-modules: NLP.Minimorph.English
NLP.Minimorph.Util
-- other-modules:
build-depends: base < 5
, text
test-suite test-minimorph
type: exitcode-stdio-1.0
main-is: test-minimorph.hs
hs-Source-Dirs: test
build-depends: base < 5
, HUnit
, minimorph
, test-framework
, test-framework-hunit
, text