-
Notifications
You must be signed in to change notification settings - Fork 0
/
almanac.cabal
93 lines (82 loc) · 2.2 KB
/
almanac.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
cabal-version: 2.4
name: almanac
version: 0.1.0.0
synopsis: utilities for ephemeris analysis
description: See README at <https://github.com/lfborjas/almanac>
category: Astrology
license-file: LICENSE
author: Luis Borjas Reyes
maintainer: [email protected]
bug-reports: https://github.com/lfborjas/almanac/issues
extra-source-files:
CHANGELOG.md
LICENSE
README.md
test/ephe/sep4_244
source-repository head
type: git
location: https://github.com/lfborjas/almanac
-- Inspired by:
-- https://github.com/tchoutri/pg-entity/blob/e5fc4cfe8fcaf2a5a6d76f983c9a60b25a57777a/pg-entity.cabal
common common-extensions
default-extensions:
DerivingStrategies
DerivingVia
GeneralizedNewtypeDeriving
NamedFieldPuns
OverloadedStrings
default-language: Haskell2010
common common-ghc-options
ghc-options: -Wall -Wcompat -Widentities -Wincomplete-record-updates -Wincomplete-uni-patterns -Wpartial-fields -Wredundant-constraints
library
import: common-extensions
import: common-ghc-options
exposed-modules:
Almanac
Almanac.Extras
Almanac.Optics
-- Modules included in this library but not exported.
other-modules:
Almanac.Import
Almanac.EclipticLongitude
Almanac.Event.Crossing
Almanac.Event.Eclipse
Almanac.Event.LunarPhase
Almanac.Event.PlanetStation
Almanac.Event.Transit
Almanac.Event.Types
Almanac.Event
Almanac.Query
Almanac.Internal.Lens
-- other-extensions:
build-depends:
base >= 4.13 && <= 4.17
,containers
,swiss-ephemeris >= 1.4.2 && <2
,time
,streaming
,foldl
,vector
hs-source-dirs: src
test-suite almanac-test
import: common-extensions
import: common-ghc-options
type: exitcode-stdio-1.0
main-is:
Spec.hs
other-modules:
AlmanacSpec
SpecUtils
hs-source-dirs:
test
build-depends:
almanac
, base
, containers
, directory
, hspec
, QuickCheck >= 2.12 && <=2.15
, random
, swiss-ephemeris
, time
, microlens