packages feed

WEditorHyphen-0.1.0.2: WEditorHyphen.cabal

name:                WEditorHyphen
version:             0.1.0.2
synopsis:            Language-specific hyphenation policies for WEditor.

description:
  This package provides language-specific hyphenation policies for use with
  the @<http://hackage.haskell.org/package/WEditor WEditor>@ and
  @<http://hackage.haskell.org/package/WEditorBrick WEditorBrick>@ packages.

homepage:            https://github.com/ta0kira/wrapping-editor
license:             Apache-2.0
license-file:        LICENSE
author:              Kevin P. Barry
maintainer:          Kevin P. Barry <ta0kira@gmail.com>
copyright:           (c) Kevin P. Barry 2020
category:            Text
build-type:          Simple

cabal-version:       2.0
tested-with:         GHC == 8.8.3

extra-source-files:  ChangeLog.md


library
  exposed-modules:     WEditorHyphen.LangHyphen
  other-extensions:    FlexibleInstances,
                       MultiParamTypeClasses,
                       Safe

  build-depends:       base >= 4.0 && < 4.14,
                       hyphenation >= 0.3 && < 0.9,
                       WEditor >= 0.2.1 && < 0.3

  default-language:    Haskell2010


test-suite WEditorHyphen-test
  type:                exitcode-stdio-1.0

  main-is:             test.hs

  other-modules:       Common,
                       TestLangHyphen

  hs-source-dirs:      test

  build-depends:       base,
                       directory >= 1.0,
                       hyphenation,
                       WEditor,
                       WEditorHyphen

  default-language:    Haskell2010