packages feed

polydata-0.2: polydata.cabal

name:                 polydata
version:              0.2
synopsis:             Wrap together data and it's constraints.
description:
  This package, together with its dependency [polydata-core](https://hackage.haskell.org/package/polydata-core),
  allows one to pass data, particularly functions, together with a constraint which describes how
  polymorphic that data is. This constraint can then be used in a generic way to produce quite polymorphic functions,
  for example, a "map" function that works on a pair of two different types.
  .
  See [Data.Poly](https://hackage.haskell.org/package/polydata-core/docs/Data-Poly.html)
  for a basic tutorial.
license: MIT
license-file: LICENSE
copyright: Clinton Mead (2017)
author:               Clinton Mead
maintainer:           clintonmead@gmail.com
category:             Data
build-type:           Simple
cabal-version:        >=1.10
tested-with: GHC == 8.0.2
bug-reports: https://github.com/clintonmead/polydata/issues

source-repository head
  type: git
  location: https://github.com/clintonmead/polydata.git

library
  exposed-modules: Data.Poly.Function, Data.Poly.Functor
  build-depends:        base == 4.9.*, indextype == 0.2.2.*, constraint-manip == 0.1.*, polydata-core == 0.1.*
  hs-source-dirs:       src
  default-language:     Haskell2010

Test-Suite tests
  type: exitcode-stdio-1.0
  main-is: Tests.hs
  other-modules:  Data.Poly.Function, Data.Poly.Functor
  build-depends:        base == 4.9.*, indextype == 0.2.2.*, constraint-manip == 0.1.*, polydata-core == 0.1.*, hspec == 2.4.*
  hs-source-dirs:       test, src
  default-language:     Haskell2010