46 lines
1.8 KiB
Text
46 lines
1.8 KiB
Text
-- Initial hanafuda.cabal generated by cabal init. For further
|
|
-- documentation, see http://haskell.org/cabal/users-guide/
|
|
|
|
name: hanafuda
|
|
version: 0.3.0.2
|
|
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://framagit.org/hanafuda
|
|
license: BSD3
|
|
license-file: LICENSE
|
|
author: Sasha
|
|
maintainer: sasha+frama@marvid.fr
|
|
-- copyright:
|
|
category: Game
|
|
build-type: Simple
|
|
extra-source-files: ChangeLog.md
|
|
cabal-version: >=1.10
|
|
source-repository head
|
|
type: git
|
|
location: https://framagit.org/hanafuda/lib
|
|
|
|
library
|
|
exposed-modules: Hanafuda
|
|
, Hanafuda.KoiKoi
|
|
, Hanafuda.Player
|
|
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
|