-
Notifications
You must be signed in to change notification settings - Fork 9
/
hnetcdf.cabal
159 lines (154 loc) · 3.94 KB
/
hnetcdf.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
name: hnetcdf
version: 0.5.0.0
cabal-version: >=1.8
build-type: Simple
license: BSD3
license-file: LICENSE
copyright: Copyright (2013) Ian Ross
maintainer: [email protected]
homepage: https://github.com/ian-ross/hnetcdf
synopsis: Haskell NetCDF library
description:
Bindings to the Unidata NetCDF library, along with a higher-level
Haskell interface that attempts to provide container polymorphic
data access (initially just Storable vectors and Repa arrays).
category: Data
author: Ian Ross
data-files:
test/tst-raw-get-put.nc
test/tst-bathymetry.nc
extra-source-files:
README.markdown
CHANGELOG.markdown
source-repository head
type: git
location: https://github.com/ian-ross/hnetcdf
library
build-depends:
base >= 4.3 && <5,
containers >= 0.5.0.0 && <0.7,
filepath >= 1.4 && <1.5,
repa >= 3.4 && <3.5,
transformers >= 0.2 && <0.6,
vector >= 0.12 && <0.13
exposed-modules:
Data.NetCDF
Data.NetCDF.Vector
Data.NetCDF.Repa
Data.NetCDF.Metadata
Data.NetCDF.PutGet
Data.NetCDF.Storable
Data.NetCDF.Store
Data.NetCDF.Types
Data.NetCDF.Utils
Data.NetCDF.Raw
Data.NetCDF.Raw.Base
Data.NetCDF.Raw.PutGet
Data.NetCDF.Raw.Attributes
Data.NetCDF.Raw.Utils
build-tools: c2hs -any
extra-libraries:
netcdf
ghc-options: -Wall
executable example1
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
vector
main-is: example1.hs
hs-source-dirs: examples
executable example2
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
vector,
repa
main-is: example2.hs
hs-source-dirs: examples
test-suite test-raw-metadata
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
vector,
repa,
test-framework >= 0.8 && <0.9,
test-framework-hunit >= 0.3 && <0.4,
test-framework-quickcheck2 >= 0.3 && <0.4,
HUnit >= 1.6 && <1.7,
QuickCheck >= 2.10 && <2.13
type: exitcode-stdio-1.0
main-is: test-raw-metadata.hs
extra-libraries:
netcdf
hs-source-dirs: test
test-suite test-raw-get-put
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
vector,
repa,
directory,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
HUnit,
QuickCheck
type: exitcode-stdio-1.0
main-is: test-raw-get-put.hs
extra-libraries:
netcdf
hs-source-dirs: test
test-suite test-raw-attributes
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
vector,
repa,
directory,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
HUnit,
QuickCheck
type: exitcode-stdio-1.0
main-is: test-raw-attributes.hs
extra-libraries:
netcdf
hs-source-dirs: test
test-suite test-get
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
errors,
repa,
vector,
directory,
test-framework,
test-framework-hunit,
test-framework-quickcheck2,
HUnit,
QuickCheck
type: exitcode-stdio-1.0
main-is: test-get.hs
extra-libraries:
netcdf
hs-source-dirs: test
test-suite test-put
build-depends:
hnetcdf -any,
base >= 4.3 && <5,
containers,
errors,
vector,
directory
type: exitcode-stdio-1.0
main-is: test-put.hs
extra-libraries:
netcdf
hs-source-dirs: test