-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathspace-workshop.cabal
103 lines (96 loc) · 2.16 KB
/
space-workshop.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
95
96
97
98
99
100
101
102
103
name: space-workshop
version: 0.1.0.0
synopsis: LambdaJam 2019 Spaceflight Workshop
description: Please see the README on GitHub at <https://github.com/githubuser/space-workshop#readme>
license: BSD3
author: "Jonathan Merritt and Luke Clifton"
maintainer: "j.s.merritt@gmail.com.com"
copyright: "2019 Jonathan Merritt and Luke Clifton"
category: Math
build-type: Simple
extra-source-files:
README.md
ChangeLog.md
cabal-version: >=1.10
homepage: https://github.com/lancelet/space-workshop
bug-reports: https://github.com/lancelet/space-workshop/issues
source-repository head
type: git
location: https://github.com/lancelet/space-workshop.git
library
exposed-modules:
Examples.ODEExamples
, Hohmann
, Hohmann.Types
, LunarAscent
, LunarAscent.AGC
, LunarAscent.Types
, ODE
, Orphans
, Plot
, Solutions.Hohmann
, Solutions.ODE
, Solutions.Staging
, Staging
, Staging.Types
, Todo
, Units
build-depends:
base >= 4.7 && < 5
, bytestring
, Chart
, Chart-diagrams
, colour
, diagrams-lib
, diagrams-pgf
, diagrams-rasterific
, iterm-show
, JuicyPixels
, lens
, linear
, MemoTrie
, text
, units
, units-defs
, vector
, vector-space
hs-source-dirs: src
default-language: Haskell2010
ghc-options: -Wall -Wredundant-constraints
test-suite tests
type: exitcode-stdio-1.0
default-language: Haskell2010
hs-source-dirs: test
main-is: Test.hs
build-depends:
base
, space-workshop
, bytestring
, Chart
, Chart-diagrams
, colour
, diagrams-lib
, diagrams-pgf
, diagrams-rasterific
, iterm-show
, JuicyPixels
, lens
, linear
, MemoTrie
, text
, units
, units-defs
, vector
, vector-space
, doctest
, hedgehog
, tasty
, tasty-hedgehog
executable tex-plots
default-language: Haskell2010
hs-source-dirs: app/tex-plots
ghc-options: -Wall
main-is: Main.hs
build-depends:
base >= 4.7 && < 5
, space-workshop