wkt-0.3.2: wkt.cabal
name: wkt
version: 0.3.2
synopsis: Parsec parsers and types for geographic data in well-known text (WKT) format.
description:
Parsec parsers and types for geographic metadata in the well-known
text (WKT) format <https://en.wikipedia.org/wiki/Well-known_text>.
WKT can be used to specify spatial reference systems and primitive
geometry in spatial datasets.
homepage: http://github.com/bgamari/wkt
license: BSD3
license-file: LICENSE
author: Ben Gamari
maintainer: bgamari.foss@gmail.com
copyright: (c) 2014 Ben Gamari
category: Data
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: git://github.com/bgamari/wkt.git
library
exposed-modules: Data.Geo.WKT, Data.Geo.WKT.Types, Data.Geo.WKT.Parser
other-extensions: TemplateHaskell
build-depends: base >=4.6 && <4.11,
lens >=3.9 && <4.16,
linear >=1.3 && <1.21,
trifecta >=1.5 && <1.8
hs-source-dirs: src
default-language: Haskell2010
test-suite tests
type: exitcode-stdio-1.0
main-is: Test.hs
default-language: Haskell2010
build-depends: base,
filepath >= 1.1 && <2.0,
lens,
linear,
trifecta,
tasty >= 0.11 && < 1.0,
tasty-golden >= 2.3 && < 3.0,
wkt