-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblackjack-trainer.cabal
33 lines (30 loc) · 1.14 KB
/
blackjack-trainer.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cabal-version: 2.4
-- Initial package description 'blackjack-trainer.cabal' generated by
-- 'cabal init'. For further documentation, see
-- http://haskell.org/cabal/users-guide/
name: blackjack-trainer
version: 0.1.0.0
synopsis: A small Haskell project that implements a simple command line blackjack game. This can be used to learn the basic strategy of blackjack.
-- description:
-- bug-reports:
-- license:
license-file: LICENSE
author: Iizuki
maintainer: [email protected]
-- copyright:
-- category:
extra-source-files: CHANGELOG.md
executable blackjack-trainer
main-is: Main.hs
other-modules: Deck, Action, GameState, Play, Hand, Strategy
-- other-extensions:
build-depends: base ^>=4.14.1.0, random, random-shuffle, SimpleTableGenerator,
mtl, array
hs-source-dirs: app
default-language: Haskell2010
test-suite blackjack-trainer-test
default-language: Haskell2010
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Main.hs
build-depends: base ^>=4.14.1.0, HUnit