packages feed

atmos-0.2.0.0: atmos.cabal

name:                atmos
version:             0.2.0.0
synopsis:            1976 US Standard Atmosphere
description: {
1976 US Standard Atmosphere
.
Adapted by Greg Horn from original programs by Ralph L. Carmichael, Public Domain Aeronautical Software
.
The original code can be found at <http://www.pdas.com/atmos.html>
}
license:             PublicDomain
author:              Greg Horn
maintainer:          gregmainland@gmail.com
copyright:           (c) Greg Horn 2012-2014
category:            Science
build-type:          Simple
cabal-version:       >=1.8

library
   hs-source-dirs:      src
   exposed-modules:     Atmosphere
   other-modules:       Atmosphere.Constants

   build-depends:       base >= 4 && < 5


test-suite unit-tests
  type: exitcode-stdio-1.0
  hs-source-dirs:      tests
  main-is:             Tests.hs
  build-depends:       base >=4.6 && < 5
                       , atmos
                       , HUnit
                       , test-framework
                       , test-framework-hunit


source-repository head
  type:     git
  location: git://github.com/ghorn/atmosphere.git