packages feed

continued-fractions-0.10.0.0: continued-fractions.cabal

name:                   continued-fractions
version:                0.10.0.0
stability:              provisional

cabal-version:          >= 1.10
build-type:             Simple

author:                 James Cook <mokus@deepbondi.net>
maintainer:             James Cook <mokus@deepbondi.net>
                        Alexandre Rodrigues Baldé <alexandrer_b@outlook.com>
license:                PublicDomain
homepage:               https://github.com/rockbmb/continued-fractions

category:               Math, Numerical
synopsis:               Continued fractions.
description:            A type and some functions for manipulating and 
                        evaluating continued fractions.

tested-with:            GHC==8.0.2, GHC==8.2.2, GHC==8.4.3, GHC==8.6.1

source-repository head
  type:                 git
  location:             https://github.com/rockbmb/continued-fractions.git

library
  hs-source-dirs:       src
  exposed-modules:      Math.ContinuedFraction
  build-depends:        base >= 4.9 && <5
  ghc-options:          -trust base -Wall
  default-language:     Haskell2010

test-suite continued-fractions-test
  type:                 exitcode-stdio-1.0
  hs-source-dirs:       test
  ghc-options:          -threaded -Wall
  main-is:              Tests.hs
  build-depends:        base >= 4.9 && < 5,
                        containers,
                        continued-fractions,
                        test-framework,
                        test-framework-quickcheck2,
                        QuickCheck >= 2.10
  other-modules:        Math.CFTests
  default-language:     Haskell2010