packages feed

draw-poker-0.1.0.1: draw-poker.cabal

name:                draw-poker
version:             0.1.0.1
synopsis:            playing draw poker
description:         for http://tune.hateblo.jp/entry/2015/05/12/023112
homepage:            http://github.com/name/project
license:             BSD3
license-file:        LICENSE
author:              tune
maintainer:          its.out.of.tune.this.my.music@gmail.com
category:            Game
build-type:          Simple
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:     Game.Poker
                     , Game.Poker.Hands
                     , Game.Poker.Cards
                     , Game.Poker.AI
                     , Game.Poker.Simple
  build-depends:       base >= 4.7 && < 5
                     , random-shuffle
                     , safe
  default-language:    Haskell2010

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

executable draw-poker-simple
  hs-source-dirs:      app
  main-is:             Simple.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , draw-poker
  default-language:    Haskell2010

test-suite draw-poker-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , draw-poker
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/name/project