avwx-0.2.0.0: avwx.cabal
name: avwx
version: 0.2.0.0
synopsis: Parse METAR weather reports
description: Parse METAR weather reports
homepage: https://github.com/hce/avwx
license: MIT
license-file: LICENSE
author: Hans-Christian Esperer <hc@hcesperer.org>
maintainer: Hans-Christian Esperer <hc@hcesperer.org>
copyright: 2016, Hans-Christian Esperer
category: Aviation
build-type: Simple
extra-source-files: README.md changelog.md
cabal-version: >=1.10
library
hs-source-dirs: src
exposed-modules: Data.Aviation.WX
, Data.Aviation.WX.Fetcher
build-depends: base >= 4.7 && < 5
, lens >= 4.1 && < 5
, attoparsec >= 0.13 && < 1
, parsers >= 0.12 && < 1
, HTTP >= 4000 && < 5000
, text >= 1.2.2.1 && < 1.3
default-language: Haskell2010
ghc-options: -Wall
executable metar
hs-source-dirs: app
main-is: Main.hs
ghc-options: -rtsopts
build-depends: base
, avwx
, pretty-show
default-language: Haskell2010
test-suite avwx-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, attoparsec >= 0.13 && < 1
, avwx
, text
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010
source-repository head
type: git
location: https://github.com/hce/avwx.git