Skip to content

Instantly share code, notes, and snippets.

@tokiwoousaka
Last active August 29, 2015 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tokiwoousaka/37c93cd7a067dbac1483 to your computer and use it in GitHub Desktop.
Save tokiwoousaka/37c93cd7a067dbac1483 to your computer and use it in GitHub Desktop.
-- Initial draw-poker.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: draw-poker
version: 0.1.0.0
synopsis: playing draw poker
description: for blog entry
homepage: http://tune.hateblo.jp/entry/2015/05/12/023112
license: BSD3
license-file: LICENSE
author: Tokiwo Ousaka
maintainer: its.out.of.tune@gmail.com
-- copyright:
category: Game
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Game.Poker
, Game.Poker.Hands
, Game.Poker.Cards
build-depends: base >= 4.6 && < 4.7
, random-shuffle >=0.0&& <0.1
, safe >=0.3 && <0.4
default-language: Haskell2010
executable draw-poker
main-is: Main.hs
-- other-modules:
-- other-extensions:
build-depends: base >=4.6 && <4.7, draw-poker
hs-source-dirs: app
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/tokiwoousaka/draw-poker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment