lib/hanafuda.cabal

48 lines
1.9 KiB
Plaintext

-- Initial hanafuda.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hanafuda
version: 0.3.3.0
synopsis: A game of Hanafuda (a family of japanese card games)
description: This is a library to represent the cards and the players
of games in this family. It also implements one such game
named KoiKoi as an example of its possibilities.
The Hanafuda.KoiKoi module in itself provides a
representation of the game's state, and exposes the
constructors you need to interact with it : initializing a
new game and playing moves. Its approach is move-by-move :
a game's state is computed from the previous state and a
move.
homepage: https://git.marvid.fr/hanafuda
license: BSD3
license-file: LICENSE
author: Tissevert
maintainer: tissevert+devel@marvid.fr
-- copyright:
category: Game
build-type: Simple
extra-source-files: ChangeLog.md
cabal-version: >=1.10
source-repository head
type: git
location: https://git.marvid.fr/hanafuda/lib
library
exposed-modules: Hanafuda
, Hanafuda.KoiKoi
, Hanafuda.Player
, Hanafuda.ID
other-modules: Hanafuda.KoiKoi.Game
, Hanafuda.KoiKoi.Round
, Hanafuda.KoiKoi.Turn
, Hanafuda.KoiKoi.Yaku
-- other-modules:
-- other-extensions:
build-depends: base
, containers
, mtl
, random
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010