chorale-geo-0.1.0: chorale-geo.cabal
name: chorale-geo
version: 0.1.0
homepage: https://github.com/mocnik-science/chorale-geo
bug-reports: https://github.com/mocnik-science/chorale-geo/issues
synopsis: A module containing basic geo functions
description:
Chorale-Geo is a Haskell module that contains basic functions for geo
applications
license: MIT
license-file: LICENSE
author: Franz-Benjamin Mocnik <mail@mocnik-science.net>
maintainer: Franz-Benjamin Mocnik <mail@mocnik-science.net>
copyright: 2014-2016 Franz-Benjamin Mocnik
category: Prelude
cabal-version: >= 1.20
build-type: Simple
extra-source-files:
README.md
source-repository head
type: git
location: git://github.com/mocnik-science/chorale-geo.git
library
exposed-modules:
Chorale.Geo.Coordinates
hs-source-dirs: src/
default-language: Haskell2010
ghc-options:
-Wall
-O2
build-depends:
base >= 4.6 && < 5,
binary >= 0.8,
chorale >= 0.1.4
test-suite test
type: exitcode-stdio-1.0
main-is: Test.hs
hs-source-dirs: tests/
default-language: Haskell2010
build-depends:
base >= 4.6 && < 5,
binary >= 0.8,
chorale >= 0.1.4,
chorale-geo >= 0.1.0,
HUnit >= 1.2.5.2,
ieee754 >= 0.7.3,
QuickCheck >= 2.6,
test-framework >= 0.8.0.3,
test-framework-hunit >= 0.3.0.1,
test-framework-quickcheck2 >= 0.3.0.2