packages feed

colour-space-0.2.0.0: colour-space.cabal

-- Initial colour-space.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                colour-space
version:             0.2.0.0
synopsis:            Instances of the manifold-classes for colour types
-- description:         
homepage:            https://github.com/leftaroundabout/colour-space
license:             GPL-3
license-file:        LICENSE
author:              Justus Sagemüller
maintainer:          (@) jsag $ hvl.no
-- copyright:           
category:            Data, Maths, Graphics
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Data.Colour.Manifold
                       Data.Colour.Manifold.Internal
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <5
                     , manifolds >=0.4.5 && <0.7
                     , manifolds-core
                     , constrained-categories
                     , linearmap-category >=0.3.5
                     , linear
                     , vector-space
                     , semigroups
                     , lens
                     , call-stack
                     , QuickCheck
                     , colour > 2 && < 3
                     , JuicyPixels >= 3.1 && < 3.4
  hs-source-dirs:      src
  default-language:    Haskell2010

test-suite tasty
  main-is:         test.hs
  type:            exitcode-stdio-1.0
  hs-source-dirs:  test/tasty
  build-depends:   base, colour-space
                   , QuickCheck
                   , manifolds-core
                   , manifolds
                   , random
                   , colour
                   , vector-space
                   , constrained-categories
                   , tasty, tasty-quickcheck
  ghc-options: -threaded "-with-rtsopts -N4 -M2G"
  default-language:    Haskell2010