game/pokeNeige.cabal

56 lines
1.7 KiB
Plaintext

-- Initial pokeNeige.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: pokeNeige
version: 0.1.0.0
synopsis: A web pokemon game
-- description:
homepage: https://git.marvid.fr/PokeNeige
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
executable pokeNeige
main-is: Main.hs
other-modules: Area
, Area.Climate
, Area.NaturalElements
, Area.Tile
, Automaton
, Character
, Config
, Game
, Gender
, Item
, Message
, Message.Client
, Message.Server
, Pokemon
, Pokemon.Move
, Pokemon.Species
, Pokemon.Stats
, Pokemon.Status
, Pokemon.Type
, Tool.Array
-- other-extensions:
build-depends: base >=4.9 && <4.12
, aeson
, bytestring
, containers
, http-types
, mtl
, vector
, wai
, wai-websockets
, warp
, websockets
ghc-options: -Wall
hs-source-dirs: src
default-language: Haskell2010