packages feed

deburr-0.1.0.1: deburr.cabal

name:                deburr
version:             0.1.0.1
synopsis:            Convert Unicode characters with burrs to their ASCII counterparts.
description:
    A small package exposing the deburr function, which converts unicode
    characters with burrs (umlauts, accents, etc) to their ASCII counterparts.
    The function intelligently handles capitals and some other edge cases.
homepage:            https://github.com/pinktrink/deburr
license:             MIT
license-file:        LICENSE
author:              Chloe Kever
maintainer:          lolbummer@gmail.com
copyright:           2017 Chloe Kever
category:            Text
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  ghc-options:         -Wall
  exposed-modules:     Text.Deburr
  build-depends:       base >= 4.7 && < 5
  default-language:    Haskell2010

test-suite deburr-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , deburr
                     , hspec
                     , QuickCheck
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/pinktrink/deburr