-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathnetrium.cabal
More file actions
85 lines (78 loc) · 2.8 KB
/
netrium.cabal
File metadata and controls
85 lines (78 loc) · 2.8 KB
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
name: netrium
version: 0.6.0
synopsis: Contract normaliser and simulator
description: Netrium enables financial engineers to precisely describe and execute both simple and exotic contracts with both financial and physical delivery.
category: Finance
author: Well-Typed LLP
maintainer: Well-Typed LLP
copyright: 2009-2018 Anthony Waite, Dave Hewett, Shaun Laurens and other contributors
license: MIT
license-file: license.txt
build-type: Simple
cabal-version: >= 1.8
data-dir: share
data-files: normalise-wrapper.hs
Common.hs
Options.hs
Calendar.hs
Swaps.hs
Credit.hs
Settlement.hs
ScheduledProduct.hs
extra-source-files: examples/Units.db.xml
examples/*.hs
examples/*.contract
examples/*.obsdb.xml
examples/*.timeseries.xml
regression-test.sh
generate-docs.hs
library
hs-source-dirs: src
exposed-modules: WriteDotGraph
Display
Observable
ObservableDB
UnitsDB
Observations
Contract
DecisionTree
DecisionTreeSimplify
Interpreter
XmlUtils
Valuation
build-depends: base >= 3.0 && < 5,
containers >= 0.3 && < 1,
process >= 1.0 && < 2,
time >= 1.1 && < 2,
HaXml == 1.25.*
executable normalise
hs-source-dirs: tool
main-is: Normalise.hs
build-depends: netrium,
base >= 3.0 && < 5,
process >= 1.0 && < 2,
filepath >= 1.1 && < 2,
directory >= 1.0 && < 2,
HaXml == 1.25.*
executable simulate
hs-source-dirs: tool
main-is: Simulate.hs
build-depends: netrium,
base >= 3.0 && < 5,
containers >= 0.3 && < 1,
HaXml == 1.25.*,
pretty == 1.1.3.*,
directory >= 1.0 && < 2,
filepath
executable visualise
hs-source-dirs: tool
main-is: Visualise.hs
build-depends: netrium,
base >= 3.0 && < 5,
directory >= 1.0 && < 2,
filepath,
process >= 1.0 && < 2,
HaXml == 1.25.*
source-repository head
type: git
location: https://github.com/netrium/Netrium