packages feed

grid-7.6.6: grid.cabal

Name:              grid
Version:           7.6.6
Stability:         experimental
Synopsis:          Tools for working with regular grids (graphs, lattices).
Description:       Provides tools for working with regular arrangements
                   of tiles, such as might be used in a board game or some
                   other type of grid map. Currently supports triangular,
                   square, and hexagonal tiles, with various 2D and 
                   toroidal layouts.
                   The userguide is available at 
                   <https://github.com/mhwombat/grid/wiki>.
Category:          Math
License:           BSD3
License-file:      LICENSE
Copyright:         (c) Amy de Buitl&eacute;ir 2010-2014
Homepage:          https://github.com/mhwombat/grid
Bug-reports:       https://github.com/mhwombat/grid/issues
Author:            Amy de Buitl&eacute;ir
Maintainer:        amy@nualeargais.ie
Build-Type:        Simple
Cabal-Version:     >=1.8

source-repository head
  type:     git
  location: https://github.com/mhwombat/grid.git

source-repository this
  type:     git
  location: https://github.com/mhwombat/grid.git
  tag:      7.6.6


library
  hs-source-dirs:  src
  build-depends:   base ==4.*,
                   cereal ==0.4.*,
                   containers ==0.5.*
  ghc-options:     -Wall
  exposed-modules: Math.Geometry.Grid,
                   Math.Geometry.Grid.Triangular,
                   Math.Geometry.Grid.Square,
                   Math.Geometry.Grid.Hexagonal,
                   Math.Geometry.Grid.Hexagonal2,
                   Math.Geometry.Grid.Octagonal,
                   Math.Geometry.GridInternal,
                   Math.Geometry.Grid.TriangularInternal,
                   Math.Geometry.Grid.SquareInternal,
                   Math.Geometry.Grid.HexagonalInternal,
                   Math.Geometry.Grid.HexagonalInternal2,
                   Math.Geometry.Grid.OctagonalInternal,
                   Math.Geometry.GridMap,
                   Math.Geometry.GridMap.Lazy

test-suite grid-tests
  type:            exitcode-stdio-1.0
  build-depends:   base ==4.*,
                   test-framework-quickcheck2 ==0.3.*,
                   QuickCheck ==2.7.*,
                   test-framework ==0.8.*,
                   grid
  hs-source-dirs:  test
  ghc-options:     -Wall
  main-is:         Main.hs
  other-modules: Math.Geometry.GridQC