packages feed

numhask-space-0.3.1: numhask-space.cabal

name: numhask-space
version: 0.3.1
synopsis:
  numerical spaces
description:
  Spaces and the numerical elements that inhabit them.
category:
  mathematics
homepage:
  https://github.com/tonyday567/numhask-space#readme
bug-reports:
  https://github.com/tonyday567/numhask-space/issues
author:
  Tony Day
maintainer:
  tonyday567@gmail.com
copyright:
  Tony Day
license:
  BSD3
license-file:
  LICENSE
build-type:
  Simple
cabal-version:
  1.18
source-repository head
  type:
    git
  location:
    https://github.com/tonyday567/numhask-space
library
  hs-source-dirs:
    src
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints
  build-depends:
      base >=4.7 && <5
    , adjunctions >=4.0 && <5
    , semigroupoids >=5 && <6
    , distributive >=0.2.2 && <1
    , lattices >= 2.0.1 && <2.1
    , time >= 1.8.0.2 && <2
    , text >= 1.2.3.1 && <2
    , foldl >= 1.4.5 && <2
    , containers >= 0.6 && < 0.7
    , tdigest >= 0.2.1 && < 0.3
  exposed-modules:
    NumHask.Space
    NumHask.Space.Types
    NumHask.Space.Range
    NumHask.Space.Rect
    NumHask.Space.Point
    NumHask.Space.Time
    NumHask.Space.Histogram
  other-modules:
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
      test
  ghc-options: -Wall -Wcompat -Wincomplete-record-updates -Wincomplete-uni-patterns -Wredundant-constraints
  build-depends:
      base >=4.7 && <5
    , doctest
  default-language: Haskell2010