packages feed

alphachar-0.0.2: alphachar.cabal

name:               alphachar
version:            0.0.2
license:            BSD3
license-file:       LICENCE
author:             Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
maintainer:         Queensland Functional Programming Lab <oᴉ˙ldɟb@llǝʞsɐɥ>
copyright:          Copyright (C) 2010-2016 NICTA Limited
                    Copyright (c) 2017-2018, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230.
synopsis:           A character between a-z
category:           Data
homepage:           https://github.com/qfpl/alphachar
bug-reports:        https://github.com/qfpl/alphachar/issues
cabal-version:      >= 1.10
build-type:         Simple
extra-source-files: CONTRIBUTORS, changelog.md
tested-with:        GHC == 8.4.1, GHC == 8.2.2, GHC == 8.0.2, GHC == 7.10.3
description:
  <<http://i.imgur.com/uZnp9ke.png>>
  .
  A character between a-z

source-repository   head
  type:             git
  location:         git@github.com:qfpl/alphachar.git

library
  default-language:
                    Haskell2010

  build-depends:
                    base               >= 4.7 && < 5
                    , lens             >= 4.0 && < 5
                    , parsers          >= 0.12.3 && < 0.13
                    , semigroups       >= 0.12 && < 1.0
                    
  ghc-options:
                    -Wall

  default-extensions:
                    NoImplicitPrelude

  hs-source-dirs:
                    src

  exposed-modules:
                    Data.Char.Alpha

test-suite tests
  type:
                    exitcode-stdio-1.0

  main-is:
                    Main.hs

  default-language:
                    Haskell2010

  build-depends:
                    base             >=4.8    && <4.12
                    , lens           >=4.0    && <5
                    , ansi-wl-pprint >=0.6    && <0.7
                    , hedgehog       >=0.5    && <0.7
                    , tasty          >=0.11   && <1.2
                    , tasty-hspec    >=1.1    && <1.2
                    , parsec         >=3.1    && <3.2
                    , parsers        >=0.12.3 && <0.13
                    , pretty         >=1.1    && <1.2
                    , text           >=1.2    && <1.3
                    , tasty-hedgehog >=0.1    && <0.3
                    , tasty-hunit    >=0.9    && <0.11
                    , alphachar

  ghc-options:
                    -Wall
                    -threaded

  default-extensions:
                    NoImplicitPrelude

  hs-source-dirs:
                    test