packages feed

numhask-space-0.2.0: numhask-space.cabal

name: numhask-space
version: 0.2.0
synopsis:
  numerical spaces
description:
  Spaces as higher-kinded numbers.
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
  default-extensions:
    NegativeLiterals
    OverloadedStrings
    UnicodeSyntax
  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
  exposed-modules:
    NumHask.Space
    NumHask.Space.Types
    NumHask.Range
    NumHask.Rect
    NumHask.Point
    NumHask.Space.Time
  other-modules:
  default-language: Haskell2010