moan-0.2.0.2: moan.cabal
name: moan
version: 0.2.0.2
synopsis: Language-agnostic analyzer for positional morphosyntactic tags
description: Implementation of a space-efficient morphosyntactic analyzer.
It solves a problem of providing a set of possible tags for a given word.
license: BSD3
license-file: LICENSE
author: Vjeran Crnjak
maintainer: vjeran.crnjak@gmail.com
-- copyright:
category: Natural Language Processing
homepage: https://github.com/vjeranc/moan
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/vjeranc/moan.git
library
exposed-modules: NLP.Morphosyntax.Analyzer
-- other-modules:
other-extensions: RecordWildCards
build-depends: base >=4.7 && <4.8
, zlib >=0.5 && <0.6
, binary >=0.7 && <0.8
, bytestring >=0.10 && <0.11
, containers >=0.5 && <0.6
, text >=1.1 && <1.2
, dawg ==0.11.*
, tagset-positional ==0.3.*
, regex-tdfa-text
, regex-tdfa
hs-source-dirs: src
default-language: Haskell2010