packages feed

wright-0.1.0.2: wright.cabal

name:           wright
version:        0.1.0.2
synopsis:       Colour space transformations and metrics.
license:        MIT
license-file:   LICENSE
author:         vi
maintainer:     me@vikramverma.com
category:       Data
build-type:     Simple
data-files:     README.md,
                test/fixtures/convert/conv.csv,
                test/fixtures/diff/diff.csv
cabal-version:  >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Data.Wright, 
                       Data.Vector
  other-modules:       Data.Matrix,
                       Data.Wright.Types,
                       Data.Wright.Colour,
                       Data.Wright.RGB,
                       Data.Wright.RGB.Compand,
                       Data.Wright.RGB.Model,
                       Data.Wright.RGB.Model.AdobeRGB1998,
                       Data.Wright.RGB.Model.AppleRGB,
                       Data.Wright.RGB.Model.BestRGB,
                       Data.Wright.RGB.Model.BetaRGB,
                       Data.Wright.RGB.Model.BruceRGB,
                       Data.Wright.RGB.Model.CIERGB,
                       Data.Wright.RGB.Model.ColorMatchRGB,
                       Data.Wright.RGB.Model.DonRGB4,
                       Data.Wright.RGB.Model.ECIRGBv2,
                       Data.Wright.RGB.Model.EktaSpacePS5,
                       Data.Wright.RGB.Model.LabGamut,
                       Data.Wright.RGB.Model.NTSCRGB,
                       Data.Wright.RGB.Model.PALSECAMRGB,
                       Data.Wright.RGB.Model.ProPhotoRGB,
                       Data.Wright.RGB.Model.SMPTECRGB,
                       Data.Wright.RGB.Model.SRGB,
                       Data.Wright.RGB.Model.WideGamutRGB,
                       Data.Wright.RGB.Matrix,
                       Data.Wright.CIE.XYZ,
                       Data.Wright.CIE.LAB,
                       Data.Wright.CIE.Yxy,
                       Data.Wright.CIE.Illuminant,
                       Data.Wright.CIE.Illuminant.Environment,
                       Data.Wright.CIE.Illuminant.A,
                       Data.Wright.CIE.Illuminant.B,
                       Data.Wright.CIE.Illuminant.C,
                       Data.Wright.CIE.Illuminant.D50,
                       Data.Wright.CIE.Illuminant.D55,
                       Data.Wright.CIE.Illuminant.D65,
                       Data.Wright.CIE.Illuminant.D75,
                       Data.Wright.CIE.Illuminant.E,
                       Data.Wright.CIE.Illuminant.F1,
                       Data.Wright.CIE.Illuminant.F10,
                       Data.Wright.CIE.Illuminant.F11,
                       Data.Wright.CIE.Illuminant.F12,
                       Data.Wright.CIE.Illuminant.F2,
                       Data.Wright.CIE.Illuminant.F3,
                       Data.Wright.CIE.Illuminant.F4,
                       Data.Wright.CIE.Illuminant.F5,
                       Data.Wright.CIE.Illuminant.F6,
                       Data.Wright.CIE.Illuminant.F7,
                       Data.Wright.CIE.Illuminant.F8,
                       Data.Wright.CIE.Illuminant.F9,
                       Data.Wright.CIE.DeltaE,
                       Data.Wright.CIE.DeltaE.CIE76,
                       Data.Wright.CIE.DeltaE.CIE94,
                       Data.Wright.CIE.DeltaE.CIE2000
  other-extensions:    FlexibleInstances, UndecidableInstances
  build-depends:       base >=4.6 && <4.7,
                       bed-and-breakfast >=0.4 && <0.5,
                       containers >= 0.5 && < 0.6
  default-language:    Haskell2010

test-suite wright-tests
  type:             exitcode-stdio-1.0
  main-is:          Main.hs
  hs-source-dirs:   test
  build-depends:    base >=4.6 && <4.7,
                    bed-and-breakfast >=0.4 && <0.5,
                    containers >= 0.5 && < 0.6,
                    assertions >=0.1 && <0.2,
                    filepath >=1.3 && <1.4,
                    lens >=3.10 && <3.11,
                    wright >= 0.1.0.2 && < 0.1.1.0
  other-modules:    Paths_wright
  default-language: Haskell2010