pixels.cabal 838 B

1234567891011121314151617181920212223242526272829
  1. name: pixels
  2. version: 0.1.0.0
  3. synopsis: A simple library for working with image data on
  4. a pixel-by-pixel basis
  5. -- description:
  6. license: BSD3
  7. license-file: LICENSE
  8. author: Getty Ritter <gettylefou@gmail.com>
  9. maintainer: Getty Ritter <gettylefou@gmail.com>
  10. copyright: ©2017 Getty Ritter
  11. -- category:
  12. build-type: Simple
  13. cabal-version: >= 1.12
  14. library
  15. exposed-modules: Image.Pixels
  16. hs-source-dirs: src
  17. ghc-options: -Wall
  18. build-depends: base >=4.7 && <5
  19. , array
  20. , bytestring
  21. , monadLib
  22. default-language: Haskell2010
  23. executable sample
  24. hs-source-dirs: examples
  25. main-is: Main.hs
  26. build-depends: base, pixels, random
  27. default-language: Haskell2010