packages feed

haskseg-0.1.0.2: haskseg.cabal

cabal-version: 1.12

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

name:           haskseg
version:        0.1.0.2
synopsis:       Simple unsupervised segmentation model
description:    Implementation of the non-parametric segmentation model described in "Type-based MCMC" (Liang, Jordan, and Klein, 2010) and "A Bayesian framework for word segmentation Exploring the effects of context" (Goldwater, Griffiths, and Johnson, 2009).
category:       NLP
homepage:       https://github.com/githubuser/haskseg#readme
author:         Tom Lippincott
maintainer:     tom@cs.jhu.edu
copyright:      2018 Tom Lippincott
license:        BSD3
license-file:   LICENSE
build-type:     Simple
extra-source-files:
    README.md

library
  exposed-modules:
      Text.HaskSeg.Counts
      Text.HaskSeg.DataSet
      Text.HaskSeg.Location
      Text.HaskSeg.Logging
      Text.HaskSeg.Lookup
      Text.HaskSeg.Metrics
      Text.HaskSeg.Model
      Text.HaskSeg.Probability
      Text.HaskSeg.Types
      Text.HaskSeg.Utils
  other-modules:
      Paths_haskseg
  hs-source-dirs:
      src
  default-extensions: Strict StrictData FlexibleContexts RecordWildCards MultiParamTypeClasses FlexibleInstances OverloadedStrings ScopedTypeVariables
  build-depends:
      MonadRandom >=0.5.1.1
    , ansi-terminal >=0.8.0.4
    , array
    , base >=4.7 && <5
    , bytestring >=0.10.8.1
    , containers >=0.5.10.2
    , exact-combinatorics >=0.2.0.8
    , logging-effect >=1.3.2
    , monad-loops >=0.4.3
    , mtl >=2.2.2
    , optparse-generic >=1.2.2
    , random >=1.1
    , random-shuffle >=0.0.4
    , text >=1.2.2
    , vector >=0.12.0.1
    , zlib >=0.6.1
  default-language: Haskell2010

executable haskseg
  main-is: Main.hs
  other-modules:
      Paths_haskseg
  hs-source-dirs:
      app
  default-extensions: Strict StrictData FlexibleContexts RecordWildCards MultiParamTypeClasses FlexibleInstances OverloadedStrings ScopedTypeVariables
  build-depends:
      MonadRandom >=0.5.1.1
    , ansi-terminal >=0.8.0.4
    , array
    , base >=4.7 && <5
    , bytestring >=0.10.8.1
    , containers >=0.5.10.2
    , exact-combinatorics >=0.2.0.8
    , haskseg
    , logging-effect >=1.3.2
    , monad-loops >=0.4.3
    , mtl >=2.2.2
    , optparse-generic >=1.2.2
    , random >=1.1
    , random-shuffle >=0.0.4
    , text >=1.2.2
    , vector >=0.12.0.1
    , zlib >=0.6.1
  default-language: Haskell2010