packages feed

numhask-space-0.6.1: numhask-space.cabal

cabal-version: 2.4
name: numhask-space
version: 0.6.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:
  BSD-3-Clause
license-file:
  LICENSE
build-type:
  Simple
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
  default-extensions:
    NegativeLiterals
    NoImplicitPrelude
    OverloadedStrings
    UnicodeSyntax
  build-depends:
    adjunctions >=4.0 && <5,
    base >=4.7 && <5,
    containers >= 0.6 && < 0.7,
    distributive >=0.2.2 && <1,
    numhask >= 0.6 && < 0.7,
    semigroupoids >=5 && <6,
    tdigest >= 0.2.1 && < 0.3,
    text >= 1.2.3.1 && <2,
    time >= 1.9.1 && <1.12,
  exposed-modules:
    NumHask.Space
    NumHask.Space.Types
    NumHask.Space.Range
    NumHask.Space.Rect
    NumHask.Space.Point
    NumHask.Space.Time
    NumHask.Space.Histogram
    NumHask.Space.XY
  other-modules:
  default-language: Haskell2010

test-suite test
  type: exitcode-stdio-1.0
  main-is: test.hs
  hs-source-dirs:
    test
  build-depends:
    base >=4.7 && <5,
    doctest >= 0.16 && < 0.18,
    numhask >= 0.6 && < 0.7,
  default-language: Haskell2010
  ghc-options:
    -Wall
    -Wcompat
    -Wincomplete-record-updates
    -Wincomplete-uni-patterns
    -Wredundant-constraints
  default-extensions:
    NegativeLiterals
    NoImplicitPrelude
    OverloadedStrings
    UnicodeSyntax