-
Notifications
You must be signed in to change notification settings - Fork 1
/
fits-parse.cabal
94 lines (90 loc) · 1.98 KB
/
fits-parse.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
cabal-version: 1.12
name: fits-parse
version: 0.4.2
synopsis: Parse FITS files
description: Parse and manipulate FITS data natively in Haskell
category: Science
homepage: https://github.com/krakrjak/fits-parse#readme
author: Zac Slade
maintainer: Zac Slade <krakrjak@gmail.com>,
Sean Hess
copyright: Copyright (c) 2023 Zac Slade
license: BSD2
license-file: LICENSE
build-type: Simple
extra-source-files:
README.md
stack.yaml
stack.yaml.lock
docs/Makefile
docs/make.bat
docs/conf.py
docs/index.rst
docs/examples/omnibus.rst
fits_files/nso_dkist.fits
fits_files/Spiral_2_30_0_300_10_0_NoGrad.fits
fits_files/nso_dkist_headers.txt
fits_files/nonconformant/testkeys.fits
fits_files/nonconformant/testkeys2.fits
flag examples
description: Do you want to build the examples?
manual: True
default: False
library
exposed-modules:
Data.Fits
Data.Fits.MegaParser
Data.Fits.Read
other-modules:
Paths_fits_parse
hs-source-dirs:
src
build-depends:
base >=4.7 && <5
, binary
, bytestring
, megaparsec
, microlens
, microlens-th
, text
, text-latin1
default-language: Haskell2010
executable omnibus
main-is: Main.hs
other-modules:
Paths_fits_parse
hs-source-dirs:
examples/omnibus
build-depends:
JuicyPixels
, base >=4.7 && <5
, bytestring
, fast-logger
, fits-parse
, microlens
, microlens-th
, optparse-applicative
, statistics
, vector
default-language: Haskell2010
if flag(examples)
buildable: True
test-suite fits-tests
type: exitcode-stdio-1.0
main-is: Spec.hs
other-modules:
Paths_fits_parse
hs-source-dirs:
test
build-depends:
base >=4.7 && <5
, bytestring
, fits-parse
, megaparsec
, microlens
, microlens-th
, mtl
, tasty
, tasty-hunit
, text
default-language: Haskell2010