packages feed

gray-extended-1.5.2: gray-extended.cabal

name:                gray-extended
version:             1.5.2
synopsis:            Gray encoding schemes
description:         Gray codes satisfy the property that two successive values 
                     differ in only one digit. Usually the term \"Gray code\"
                     refers to the Binary Reflected Gray code (BRGC),  but 
                     non-binary Gray codes have also been discovered.
homepage:            https://github.com/mhwombat/gray-extended#readme
bug-reports:         https://github.com/mhwombat/gray-extended/issues
license:             BSD3
license-file:        LICENSE
author:              Amy de Buitléir
maintainer:          amy@nualeargais.ie
copyright:           (c) Amy de Buitléir 2010-2016
category:            Math
build-type:          Simple
-- extra-source-files:
cabal-version:       >=1.10

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

test-suite gray-extended-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             TestMain.hs
  build-depends:       base,
                       gray-extended,
                       test-framework ==0.8.*,
                       test-framework-quickcheck2 ==0.3.*,
                       QuickCheck ==2.7.* || ==2.8.* || ==2.9.*
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/mhwombat/gray-extended