HangmanAscii-0.1.1.2: HangmanAscii.cabal
-- Initial hangman-game.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: HangmanAscii
version: 0.1.1.2
synopsis: Yet another Hangman game.
description:
Another command line implementation of the classic
hangman game with ASCII shape and anumation. after
installation with cabal install, execute hangman-ascii
to run the game.
homepage: https://github.com/pylover/hangman-ascii
license: BSD3
license-file: LICENSE
author: pylover
maintainer: vahid.mardani@gmail.com
-- copyright:
category: Game
build-type: Simple
extra-source-files: CHANGELOG.md
cabal-version: >=1.10
executable hangman-ascii
main-is: Main.hs
other-modules: Game
, Paths_HangmanAscii
, Shape
, Database
-- other-extensions:
build-depends: base >=4 && <5
, optparse-applicative >=0.16.1 && <0.17
, random >=1.2.1.1 && <2
, haskeline >=0.8.2 && <0.9
, mtl >=2.2.2 && <3
, containers >=0.6.4.1 && <0.7
-- hs-source-dirs:
default-language: Haskell2010