-
Notifications
You must be signed in to change notification settings - Fork 1
/
hql.cabal
28 lines (26 loc) · 1.03 KB
/
hql.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
-- Initial hql.cabal generated by cabal init. For further documentation,
-- see http://haskell.org/cabal/users-guide/
name: hql
version: 0.1.0.0
synopsis: Reimplementation of QuantLib in Haskell
-- description:
homepage: https://github.com/pcaspers/hql
license: BSD3
license-file: LICENSE
author: Peter Caspers
maintainer: [email protected]
-- copyright:
category: Quantitative Finance
build-type: Simple
cabal-version: >=1.8
library
exposed-modules: Hql,
Hql.Base, Hql.Cashflows, Hql.Time,
Hql.Base.InterestRate,
Hql.Cashflows.Cashflow, Hql.Cashflows.Coupon,
Hql.Cashflows.FixedRateCoupon,
Hql.Time.Calendar, Hql.Time.Date, Hql.Time.DayCounter,
Hql.Time.Frequency, Hql.Time.Period, Hql.Time.Schedule
--other-modules:
build-depends: base ==4.5.*
hs-source-dirs: src