-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcurrycarbon.cabal
82 lines (78 loc) · 2.21 KB
/
currycarbon.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
name: currycarbon
version: 0.3.0.1
synopsis: A package for simple, fast radiocarbon calibration
description: Radiocarbon calibration with the intercept method optimised for fast calibration of many dates.
homepage: https://github.com/nevrome/currycarbon
category: Archaeoinformatics
author: Clemens Schmid
maintainer: [email protected]
license: MIT
license-file: LICENSE
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md,
CHANGELOG.md
source-repository head
type: git
location: https://github.com/nevrome/currycarbon.git
library
exposed-modules:
Currycarbon
Currycarbon.CalCurves.Intcal20
Currycarbon.Calibration.Utils
Currycarbon.Calibration.MatrixMult
Currycarbon.Calibration.Bchron
Currycarbon.Calibration.Calibration
Currycarbon.CLI.RunCalibrate
Currycarbon.ParserHelpers
Currycarbon.Parsers
Currycarbon.SumCalibration
Currycarbon.Types
Currycarbon.Utils
hs-source-dirs:
src
build-depends:
base >= 4.14 && < 5
, filepath >= 1.4 && < 1.5
, parsec >= 3.1 && < 3.2
, vector >= 0.12 && < 0.14
, math-functions >= 0.3 && < 0.4
, MonadRandom >= 0.6 && < 1
, random > 1.2 && < 1.3
default-language:
Haskell2010
executable currycarbon
main-is:
Main-currycarbon.hs
hs-source-dirs:
src-executables
build-depends:
currycarbon
, base >= 4.14 && < 5
, optparse-applicative >= 0.16 && < 0.19
, filepath >= 1.4 && < 1.5
other-modules:
Paths_currycarbon
default-language:
Haskell2010
ghc-options:
-threaded -with-rtsopts=-N -optP-Wno-nonportable-include-path
test-suite spec
hs-source-dirs:
test
main-is:
Main.hs
type:
exitcode-stdio-1.0
build-depends:
base >= 4.9 && < 5
, currycarbon
, hspec >= 2 && < 3
, hspec-core >= 2.10 && < 3
, process >= 1.6 && < 1.7
other-modules:
ParserSpec,
GoldenSpec,
Spec
default-language:
Haskell2010