packages feed

hcoord-1.0.0.0: hcoord.cabal

name:                hcoord
version:             1.0.0.0
synopsis:            Easily convert between latitude/longitude, UTM and OSGB.
description:         Please see README.md
homepage:            https://github.com/danfran/hcoord#readme
license:             BSD3
license-file:        LICENSE
author:              Daniele Francesconi
maintainer:          dfrancesconi12@gmail.com
copyright:           copyleft
category:            geography
build-type:          Simple
extra-source-files:  README.md
cabal-version:       >=1.10

library
  hs-source-dirs:      src
  exposed-modules:
      Datum
      DMS
      ECEFRef
      Ellipsoid
      IrishRef
      LatLng
      MathExtensions
      MGRSRef
      OSRef
      UTMRef
  build-depends:       base >= 4 && < 5
                     , mtl
                     , regex-pcre
  default-language:    Haskell2010

executable hcoord-exe
  hs-source-dirs:      app
  main-is:             Main.hs
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  build-depends:       base
                     , hcoord
  default-language:    Haskell2010

test-suite hcoord-test
  type:                exitcode-stdio-1.0
  hs-source-dirs:      test
  main-is:             Spec.hs
  build-depends:       base
                     , HUnit >= 1.2 && < 1.6
                     , hcoord
                     , mtl
                     , ieee754
                     , data-default
  ghc-options:         -threaded -rtsopts -with-rtsopts=-N
  default-language:    Haskell2010

source-repository head
  type:     git
  location: https://github.com/danfran/hcoord