lib/hanafuda.cabal

34 lines
1.1 KiB
Plaintext

-- Initial hanafuda.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: hanafuda
version: 0.1.0.0
synopsis: A game of Hanafuda (a family of japanese card games)
-- description:
homepage: https://framagit.org/sasha/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
library
exposed-modules: Hanafuda.Year
, Hanafuda.Month
, Hanafuda.Day
, Hanafuda.Game
, Hanafuda.Yaku
, Hanafuda.Card
-- other-modules:
-- other-extensions:
build-depends: base >=4.10 && <4.11
, containers
, mtl
, random
hs-source-dirs: src
default-language: Haskell2010