packages feed

percent-format-0.0.1: percent-format.cabal

-- Cabal file for PercentFormat

name:                percent-format
version:             0.0.1
synopsis:            simple printf-style string formatting
description:
  The @Text.PercentFormat@ library provides printf-style string formatting.  It
  provides a @%@ operator (as in Ruby or Python) and uses the old
  C-printf-style format you know and love.

homepage:            https://github.com/rudymatela/percent-format#readme
license:             BSD3
license-file:        LICENSE
author:              Rudy Matela <rudy@matela.com.br>
maintainer:          Rudy Matela <rudy@matela.com.br>
category:            Testing
build-type:          Simple
cabal-version:       1.18

extra-doc-files: README.md
               , TODO.md
extra-source-files: .gitignore
                  , Makefile
                  , mk/depend.mk
                  , mk/ghcdeps
                  , mk/haddock-i
                  , mk/All.hs
                  , mk/haskell.mk
                  , mk/Toplibs.hs
                  , stack.yaml
                  , tests/test-sdist
                  , .travis.yml
                  , bench/examples.hs
                  , bench/speculate.hs
                  , tests/diff/*.out
tested-with: GHC==8.4, GHC==8.2, GHC==8.0, GHC==7.10, GHC==7.8


source-repository head
  type:            git
  location:        https://github.com/rudymatela/percent-format

source-repository this
  type:            git
  location:        https://github.com/rudymatela/percent-format
  tag:             v0.0.1

library
  exposed-modules: Text.PercentFormat
                 , Text.PercentFormat.Quotient
                 , Text.PercentFormat.Spec
                 , Text.PercentFormat.Utils
  hs-source-dirs:      src
  build-depends:       base >= 4 && < 5
  default-language:    Haskell2010

test-suite number
  type:                exitcode-stdio-1.0
  main-is:             test-number.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010

test-suite scientific
  type:                exitcode-stdio-1.0
  main-is:             test-scientific.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010

test-suite prop
  type:                exitcode-stdio-1.0
  main-is:             test-prop.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010

test-suite quotient
  type:                exitcode-stdio-1.0
  main-is:             test-quotient.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010

test-suite unit
  type:                exitcode-stdio-1.0
  main-is:             test-unit.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010

test-suite spec
  type:                exitcode-stdio-1.0
  main-is:             test-spec.hs
  other-modules:       Test
  hs-source-dirs:      tests
  build-depends:       base >= 4 && < 5, percent-format, leancheck
  default-language:    Haskell2010