grid-7.6.10: grid.cabal
Name: grid
Version: 7.6.10
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éir 2010-2014
Homepage: https://github.com/mhwombat/grid
Bug-reports: https://github.com/mhwombat/grid/issues
Author: Amy de Buitlé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.10
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,
Math.Geometry.Grid.Hexagonal2QC,
Math.Geometry.Grid.HexagonalQC,
Math.Geometry.Grid.OctagonalQC,
Math.Geometry.Grid.SquareQC,
Math.Geometry.Grid.TriangularQC