name: pstemmer version: 0.1.0.0 synopsis: A Haskell Implementation of the Porter Stemmer description: A Haskell Implementation of the Porter Stemmer homepage: https://github.com/wapxmas/pstemmer#readme license: BSD3 license-file: LICENSE author: Sergey N. Yashin maintainer: yashin.sergey@gmail.com copyright: 2016 Sergey N. Yashin category: Natural Language Processing build-type: Simple -- extra-source-files: cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: NLP.PStemmer.Internal.Function , NLP.PStemmer.Types , NLP.PStemmer.Ru build-depends: base >= 4.7 && < 5 , text >= 1.2 && < 1.4 ghc-options: -W -Wall default-language: Haskell2010 executable pstemmer-test-exe hs-source-dirs: app main-is: Main.hs ghc-options: -W -Wall -threaded -rtsopts -with-rtsopts=-N build-depends: base , pstemmer , text >= 1.2 && < 1.4 default-language: Haskell2010 source-repository head type: git location: https://github.com/wapxmas/pstemmer