name: avwx version: 0.1.0.1 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 maintainer: Hans-Christian Esperer 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 -- other-modules: Data.Aviation.WX.Fetcher build-depends: base >= 4.7 && < 5 , attoparsec , HTTP , text >= 1.2.2.1 && < 1.3 default-language: Haskell2010 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 , avwx , text ghc-options: -threaded -rtsopts -with-rtsopts=-N default-language: Haskell2010 source-repository head type: git location: https://github.com/hce/avwx.git