-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathatmos.cabal
43 lines (37 loc) · 1.2 KB
/
atmos.cabal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: atmos
version: 0.4.0.0
synopsis: 1976 US Standard Atmosphere Model
description: {
1976 US Standard Atmosphere Model.
.
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-2015
category: Science
build-type: Simple
cabal-version: >=1.8
library
hs-source-dirs: src
exposed-modules: Atmosphere
Atmosphere.Dimensional
other-modules: Atmosphere.Constants
build-depends: base >= 4 && < 5
, dimensional >= 1.0.0.0
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