-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathphysics.cabal
84 lines (67 loc) · 2.53 KB
/
physics.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
-- Initial wih-physics.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: physics
version: 0.0.0.0
synopsis: knowledge of physics, encoded in Haskell.
description:
- Astrophysics.* -- astrophysical concepts in Haskell.
.
- Physics.* -- physical concepts in Haskell.
.
- Numeric.Physical.* -- mathematical tools with dimensional wrapper.
.
- Text.CSL.* -- typical ways of citing references for physics.
homepage: https://github.com/nushio3/ihmo-physics
license: BSD3
license-file: LICENSE
author: TakayukiMuranushi
maintainer: [email protected]
-- copyright:
category: Database
build-type: Simple
cabal-version: >=1.8
library
exposed-modules:
Astrophysics.ProtoplanetaryDisk.Model
Numeric.Physical.VectorCalculus
Physics.Constants
Physics.ContinuumMechanics.Equations
Physics.Dimension
Physics.NewtonMechanics.Concepts
Test.Hspec.Expectations.UnitTyped
Text.CSL.Output.Haddock
-- other-modules:
build-depends: base >=4.5 && <5
, ad >= 3.4
, citeproc-hs >= 0.3.7
, citation-resolve >= 0.2.3
, dynamic-object >= 0.2.1
, embeddock >= 0.3
, HUnit >= 1.2
, typelevel-tensor >= 0.2.1
, unittyped >= 0.3
ghc-options: -O3 -Wall -fno-warn-type-defaults
Test-Suite doctests
Type: exitcode-stdio-1.0
HS-Source-Dirs: test
Ghc-Options: -threaded -Wall
Main-Is: doctests.hs
Build-Depends: base
, doctest >= 0.9.3
, directory >= 1.2
, filepath >= 1.3
Test-Suite spec
Type: exitcode-stdio-1.0
Ghc-Options: -Wall
-- -L/usr/lib/ -lpthread
HS-Source-Dirs: test
Main-Is: spec.hs
Build-Depends: base
, physics
, hspec >= 1.3
, QuickCheck >= 2.0
, citation-resolve >= 0.2.3
, HUnit >= 1.2
, persistent-sqlite >= 1.1.2
, typelevel-tensor
, unittyped