packages feed

hsexif-0.4.0.1: hsexif.cabal

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

name:                hsexif
version:             0.4.0.1
synopsis:            EXIF handling library in pure Haskell
description:         The hsexif library provides functions for working with EXIF data
                     contained in JPEG files. Currently it only supports reading the data.
homepage:            https://github.com/emmanueltouzery/hsexif
license:             BSD3
license-file:        LICENSE
author:              Emmanuel Touzery
maintainer:          etouzery@gmail.com
-- copyright:           
category:            Graphics
build-type:          Simple
-- extra-source-files:  
cabal-version:       >=1.10

library
  exposed-modules:     Graphics.HsExif
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.6 && <5,
                       binary >=0.7 && <0.8,
                       bytestring >=0.10 && <0.11,
                       containers >= 0.5 && <0.6,
                       time >= 1.4 && <1.5
  -- hs-source-dirs:      
  default-language:    Haskell2010
  Ghc-Options:         -Wall

test-suite             tests
  type:                 exitcode-stdio-1.0
  hs-source-dirs: ., tests
  main-is: Tests.hs
  default-language:    Haskell2010
  build-depends:       base,
                       hspec >= 1.8 && <1.9,
                       HUnit >= 1.2 && <1.3,
                       binary >=0.7 && <0.8,
                       bytestring >=0.10 && <0.11,
                       containers >= 0.5 && <0.6,
                       time >= 1.4 && <1.5
  Ghc-Options:         -Wall