name:               plankton
version:            0.0.0.1
synopsis:           The core of a numeric prelude, taken from numhask
description:        The core of a numeric prelude, taken from numhask, because I thought it would be useful to have this as a separate library.
category:           Mathematics
homepage:           https://github.com/chessai/plankton
bug-reports:        https://github.com/chessai/issues
license:            BSD3
license-file:       LICENSE
author:             Daniel Cartwright
maintainer:         dcartwright@layer3com.com
build-type:         Simple
cabal-version:      >= 1.10
extra-source-files: readme.md

library
  default-language: Haskell2010
  ghc-options:      -Wall
  hs-source-dirs:   src
  exposed-modules:
    Plankton.Additive,
    Plankton.Basis,
    Plankton.Distribution,
    Plankton.Ring,
    Plankton.Field,
    Plankton.Integral,
    Plankton.Magma,
    Plankton.Metric,
    Plankton.Module,
    Plankton.Multiplicative
  build-depends:
    base >= 4.7 && < 4.11,
    protolude >= 0.1 && < 0.3,
    adjunctions >= 4.3 && < 5.0
  default-extensions:
    NoImplicitPrelude,
    OverloadedStrings,
    UnicodeSyntax

source-repository head
  type: git
  location: https://github.com/chessai/plankton