packages feed

arpa-0.0.0.0: arpa.cabal

name:               arpa
version:            0.0.0.0
synopsis:           Library for reading ARPA n-gram models
description:        This is a library for reading ARPA n-gram models.
homepage:           https://github.com/sfischer13/haskell-arpa
bug-reports:        https://github.com/sfischer13/haskell-arpa/issues
license:            BSD3
license-file:       LICENSE
author:             Stefan Fischer
maintainer:         Stefan Fischer <sfischer13@ymail.com>
copyright:          (c) 2015, Stefan Fischer
category:           Text, Natural Language Processing, NLP
build-type:         Simple
extra-source-files: CHANGELOG
cabal-version:      >= 1.10
tested-with:        GHC == 7.8
stability:          experimental

source-repository head
    type: git
    location: git://github.com/sfischer13/haskell-arpa.git

executable arpa
    main-is: Main.hs 
    hs-source-dirs: src
    build-depends:
        base == 4.7.*,
        arpa == 0.0.*
    default-language: Haskell2010
    ghc-options: -Wall
    
library
    exposed-modules: NLP.ARPA   
    hs-source-dirs: lib
    build-depends:
        base == 4.7.*
    default-language: Haskell2010
    ghc-options: -Wall