packages feed

banwords-0.2.0.1: banwords.cabal

name:                 banwords
version:              0.2.0.1
author:               Ian Grant Jeffries
maintainer:           ian@housejeffries.com
category:             Heuristics
synopsis:             Generalized word blacklister
homepage:             https://github.com/fanjam/banwords
build-type:           Simple
license:              MIT
license-file:         MIT-LICENSE.txt
cabal-version:        >=1.10
extra-source-files:   README.md

library
  hs-source-dirs:     src
  exposed-modules:    Heuristics.BanWords
  default-language:   Haskell2010
  ghc-options:        -Wall
  default-extensions: OverloadedStrings

  build-depends:      attoparsec   >= 0.12.1 && < 0.14
                    , base         >= 4.6    && < 5.0
                    , bytestring   >= 0.10   && < 0.11
                    , data-default >= 0.5    && < 0.6
                    , text         >= 1.1    && < 1.3
                    , vector       >= 0.10.12 && < 0.11

test-suite unit
  type:               exitcode-stdio-1.0
  hs-source-dirs:     tests
  main-is:            Unit.hs
  other-modules:      GoodWords
  default-language:   Haskell2010
  ghc-options:        -Wall
  default-extensions: OverloadedStrings

  build-depends:      attoparsec
                    , banwords
                    , base
                    , text
                    , vector
                    , HUnit                >= 1.2 && < 1.3
                    , test-framework       >= 0.8 && < 0.9
                    , test-framework-hunit >= 0.3 && < 0.4

source-repository head
  type:               git
  location:           git://github.com/fanjam/banwords.git