packages feed

pig-0.0.1: pig.cabal

name:           pig
version:        0.0.1
category:       Math
synopsis:       dice game
description:    A dice game simulator
license:        BSD3
license-file:   LICENSE.md
author:         Andrew Pennebaker
maintainer:     andrew.pennebaker@gmail.com
build-type:     Simple
cabal-version:  >=1.8

source-repository head
  type:     git
  location: git://github.com/mcandre/pig.git

library
  build-depends:
    base       >= 4.3.1.0 && < 5,
    containers >= 0.5.11.0 && < 0.6,
    random     >= 1.1 && < 2,
    random-shuffle >= 0.0.4 && < 0.0.5

  exposed-modules: Pig

  ghc-options: -Wall -fwarn-tabs
  hs-source-dirs: src

executable pig
  build-depends:
    base       >= 4.3.1.0 && < 5,
    containers >= 0.5.11.0 && < 0.6,
    random     >= 1.1 && < 2,
    random-shuffle >= 0.0.4 && < 0.0.5

  other-modules: Pig

  main-is: CLI.hs
  hs-source-dirs: src
  ghc-options: -Wall -fwarn-tabs