-- This file has been generated from package.yaml by hpack version 0.28.2.
--
-- see: https://github.com/sol/hpack
--
-- hash: a5038439463112c6dda019ebfec2f74d0eca53a2baa7c6eaee2864ff01582c92

name:           ngram
version:        0.1.0.0
synopsis:       Ngram models for compressing and classifying text.
description:    Please see the README on Github at <https://github.com/TomLippincott/ngram#README.md>
category:       natural-language-processing, machine-learning
homepage:       https://github.com/TomLippincott/ngram#readme
bug-reports:    https://github.com/TomLippincott/ngram/issues
author:         Tom Lippincott
maintainer:     tom@cs.jhu.edu
copyright:      2018 Tom Lippincott
license:        BSD3
license-file:   LICENSE
build-type:     Simple
cabal-version:  >= 1.10
extra-source-files:
    README.md

source-repository head
  type: git
  location: https://github.com/TomLippincott/ngram

library
  exposed-modules:
      Codec.Compression.PPM
      Codec.Compression.PPM.Coding
      Codec.Compression.PPM.Trie
      Codec.Compression.PPM.Utils
  other-modules:
      Paths_ngram
  hs-source-dirs:
      src
  build-depends:
      base >=4.7 && <5
    , cereal >=0.5.4.0
    , cereal-text >=0.1.0.2
    , containers >=0.5.10.2
    , text >=1.2.2
  default-language: Haskell2010

executable ppm
  main-is: PPMClassifier.hs
  other-modules:
      Paths_ngram
  hs-source-dirs:
      app
  ghc-options: -threaded -rtsopts
  build-depends:
      base >=4.7 && <5
    , bytestring >=0.10.8.1
    , cereal >=0.5.4.0
    , cereal-text >=0.1.0.2
    , containers >=0.5.10.2
    , ngram
    , optparse-generic >=1.2.2
    , text >=1.2.2
    , zlib >=0.6.1
  default-language: Haskell2010