packages feed

titlecase-1: titlecase.cabal

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

name:                titlecase
version:             1
license:             BSD3
license-file:        LICENSE
author:              Nikita Karetnikov,
                     Peter Simons,
                     Aaron Wolf
maintainer:          Peter Simons <simons@cryp.to>
homepage:            https://github.com/peti/titlecase#readme
bug-reports:         https://github.com/peti/titlecase/issues
category:            Text
stability:           stable
build-type:          Simple
cabal-version:       >= 1.10
synopsis:            Convert English Words to Title Case
description:         Capitalize all English words except articles (a, an, the), coordinating conjunctions (for, and, nor, but, or, yet, so), and prepositions (unless they begin or end the title).  The prepositions are taken from <https://en.wikipedia.org/wiki/List_of_English_prepositions Wikipedia>.
tested-with:         GHC > 7.6 && < 8.1

source-repository head
  type: git
  location: https://github.com/peti/titlecase

library
  default-language: Haskell2010
  hs-source-dirs:
    src
  other-extensions: MultiWayIf
  ghc-options: -Wall
  build-depends:
    base <5
  exposed-modules:
    Data.Text.Titlecase
    Data.Text.Titlecase.Internal
  other-modules:
    Paths_titlecase

executable titlecase
  default-language: Haskell2010
  main-is: Main.hs
  ghc-options: -Wall
  build-depends:
    base <5,
    titlecase

test-suite test
  type: exitcode-stdio-1.0
  main-is: Main.hs
  hs-source-dirs:
    tests
  ghc-options: -Wall
  build-depends:
    base <5,
    titlecase,
    tasty,
    tasty-hunit,
    tasty-quickcheck
  other-modules:
    Property
    Unit
  default-language: Haskell2010