-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhysicalQuantities.cabal
98 lines (82 loc) · 3.03 KB
/
PhysicalQuantities.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
-- Initial PhysicalQuantities.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: PhysicalQuantities
version: 0.2.3.5
synopsis: Type level physical quantities and measurement units.
-- description:
homepage: -
license: MIT
license-file: LICENSE
author: Dmitry K.
maintainer: -
-- copyright:
category: Development
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules:
PhysicalQuantities.Definitions
PhysicalQuantities.Decomposition
PhysicalQuantities.Decomposition.TStruct
PhysicalQuantities.Combinations
PhysicalQuantities.Templates
PhysicalQuantities.Measures
PhyQ
PhyQ.Quantity
PhyQ.Units.SI
PhyQ.SI
other-modules: PhyQ.Quantity.Base
PhyQ.Quantity.Derived
PhyQ.Units.SI.Base
PhyQ.Units.SI.Derived
-- other-extensions:
build-depends: base >=4.9 && <4.10
, template-haskell == 2.11.*
-- , singletons >= 2.1 && < 2.2
, TypeNumerics >= 0.2.4.0
hs-source-dirs: src
default-language: Haskell2010
default-extensions: TypeOperators
, DataKinds
, TypeFamilies
-- ghc-options: -ddump-splices
test-suite Quantities
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: PhyQ/TestQuantities.hs
other-modules: PhyQ.Test.Common
PhyQ.Test.QuantitiesSpec
build-depends: PhysicalQuantities
, base >=4.9 && <4.10
, hspec >= 2.3 && < 2.4
default-language: Haskell2010
default-extensions: TypeOperators
, DataKinds
, TypeFamilies
test-suite Units-SI
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: PhyQ/TestUnitsSI.hs
other-modules: PhyQ.Test.Common
PhyQ.Test.Units.SISpec
build-depends: PhysicalQuantities
, base >=4.9 && <4.10
, hspec >= 2.3 && < 2.4
default-language: Haskell2010
default-extensions: TypeOperators
, DataKinds
, TypeFamilies
test-suite Measures-SI
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: PhyQ/TestMeasuresSI.hs
other-modules: PhyQ.Test.Common
PhyQ.Test.Measures.SISpec
build-depends: PhysicalQuantities
, base >=4.9 && <4.10
, hspec >= 2.3 && < 2.4
default-language: Haskell2010
default-extensions: TypeOperators
, DataKinds
, TypeFamilies