gdritter repos pixels / master pixels.cabal
master

Tree @master (Download .tar.gz)

pixels.cabal @masterraw · history · blame

name:             pixels
version:          0.1.0.0
synopsis:         A simple library for working with image data on
                  a pixel-by-pixel basis
-- description:
license:          BSD3
license-file:     LICENSE
author:           Getty Ritter <gettylefou@gmail.com>
maintainer:       Getty Ritter <gettylefou@gmail.com>
copyright:        ©2017 Getty Ritter
-- category:
build-type:       Simple
cabal-version:    >= 1.12

library
  exposed-modules:     Image.Pixels
  hs-source-dirs:      src
  ghc-options:         -Wall
  build-depends:       base >=4.7 && <5
                     , array
                     , bytestring
                     , monadLib
  default-language:    Haskell2010

executable sample
  hs-source-dirs: examples
  main-is: Main.hs
  build-depends: base, pixels, random
  default-language: Haskell2010