packages feed

snake-0.1.0.0: snake.cabal

--  See http://haskell.org/cabal/users-guide

name:                snake
version:             0.1.0.0
synopsis:            A basic console snake game.
description:         A basic console snake game with rudimentary ASCII-based graphics and minimal dependencies.
homepage:            http://code.alaminium.me/habibalamin/snake
license:             MIT
license-file:        LICENSE
author:              Habib Alamin
maintainer:          ha.alamin@gmail.com
category:            Game
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

executable snake
  main-is:             Main.hs
  build-depends:       base >=4.8 && <4.9,
                       terminal-size >=0.3.2.1 && <0.3.3,
                       split >=0.2.3 && <0.2.4,
                       random >=1.1 && <1.1.1
  other-modules:       Terminal,
                       World,
                       Snake,
                       Movement
  default-language:    Haskell2010