packages feed

Hangman-0.1.0.2: Hangman.cabal

-- Initial Hangman.cabal generated by cabal init.  For further 
-- documentation, see http://haskell.org/cabal/users-guide/

name:                Hangman
version:             0.1.0.2
synopsis:            The classic game of Hangman.
description:         With a number of guesses you must figure out the hidden word!
homepage:            https://github.com/lf94/Hangman
license:             GPL-3
license-file:        LICENSE
author:              Lee Fallat
maintainer:          developer@leefallat.ca
-- copyright:           
category:            Game
build-type:          Simple
extra-source-files:  Hangman.hs Words.hs Tests.hs README.md
cabal-version:       >=1.10

executable Hangman
  main-is:             Main.hs
  -- other-modules:       
  -- other-extensions:    
  build-depends:       base >=4.7 && <4.8, transformers == 0.4.3.*, random == 1.*
  -- hs-source-dirs:      
  default-language:    Haskell2010

test-suite tests
   ghc-options: -Wall
   default-extensions:  OverloadedStrings
   type: exitcode-stdio-1.0
   main-is: Tests.hs
   build-depends:       base,
                        transformers == 0.4.3.*,
                        hspec                >= 1.8
   default-language:    Haskell2010