packages feed

pixelated-avatar-generator-0.1.0: pixelated-avatar-generator.cabal

name:                pixelated-avatar-generator
version:             0.1.0
synopsis:            A library and application for generating pixelated avatars.
description:
                     <<data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAAEAAQMAAABmvDolAAAABlBMVEWWlpb///+oiwZLAAAAUElEQVRo3u3XsQ0AIAgAQfZfGhsLoxAH4L7CeLXBiF1mZjUHAADAFQAAQHX5IAAARoLzUM4AAIwF9igAAH5AkqruR6NdLgAAGAX8swAAaMACTyHw4mh6Rv4AAAAASUVORK5CYII=>>

                     .

                     Pixelated Avatar Generator is a library and application
                     for generating pixelated avatar images from seed strings.
homepage:            https://github.com/ExcaliburZero/pixelated-avatar-generator
bug-reports:         https://github.com/ExcaliburZero/pixelated-avatar-generator/issues
license:             MIT
license-file:        LICENSE
author:              Christopher Wells
maintainer:          cwellsny@nycap.rr.com
copyright:           2016 Christopher Wells
stability:           Experimental
category:            Image, Graphics
build-type:          Simple
extra-source-files:  README.md
                     CHANGELOG.md
                     example_image.png
                     test/Graphics/Avatars/helloAvatar.png
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Graphics.Avatars.Pixelated
  build-depends:       base >= 4.7 && < 5
                     , JuicyPixels >= 3.2.7
                     , bytestring >= 0.10.6.0
                     , pureMD5 >= 2.1.0.0
                     , split >= 0.2.3.0
  ghc-options:         -Wall
  default-language:    Haskell2010

executable pixelated-avatar-generator
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N -Wall
  build-depends:       base
                     , pixelated-avatar-generator
  default-language:    Haskell2010

test-suite unit-tests
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  other-modules:       Graphics.Avatars.PixelatedSpec
  build-depends:       base
                     , JuicyPixels >= 3.2.7
                     , bytestring >= 0.10.6.0
                     , pixelated-avatar-generator
                     , hspec
                     , QuickCheck
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/ExcaliburZero/pixelated-avatar-generator