packages feed

polynom-0.1.0.0: polynom.cabal

name:                polynom
version:             0.1.0.0
synopsis:            Polynomial types and operations
license:             OtherLicense
license-file:        LICENSE
author:              M Farkas-Dyck
maintainer:          strake888@gmail.com
category:            Math
build-type:          Simple
cabal-version:       >=1.10

library
  exposed-modules:     Data.Polynom
  other-modules:       Data.Polynom.Impl, Util
  default-extensions:  NoImplicitPrelude, MultiParamTypeClasses, FlexibleContexts, FlexibleInstances, ConstraintKinds
  other-extensions:    UndecidableInstances
  build-depends:       base >=4.8 && <4.9, base-unicode-symbols >=0.2 && <0.3, algebra >=4.2 && <4.3, containers >=0.5 && <0.6
  default-language:    Haskell2010
  ghc-options:         -Wall

test-suite test
  type:                exitcode-stdio-1.0
  main-is:             test.hs
  default-extensions:  NoImplicitPrelude, MultiParamTypeClasses, FlexibleContexts, FlexibleInstances, ConstraintKinds, DataKinds
  build-depends:       base >=4.8 && <4.9, base-unicode-symbols >=0.2 && <0.3, algebra >=4.2 && <4.3, containers >=0.5 && <0.6,
                       transformers >=0.4 && <0.5, peano >=0.1 && <0.2, clist >=0.1 && <0.2,
                       tasty >= 0.11 && <0.12, smallcheck >=1.1 && <1.2, tasty-smallcheck >=0.8 && <0.9
  default-language:    Haskell2010
  ghc-options:         -threaded -with-rtsopts=-N

source-repository head
  type:                git
  location:            https://github.com/strake/polynom.hs