forked from Motions/motions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmotions.cabal
97 lines (93 loc) · 3.84 KB
/
motions.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
-- Initial motions.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: motions
version: 0.1.0.0
-- synopsis:
-- description:
license: Apache
license-file: LICENSE
-- author:
-- maintainer:
-- copyright:
category: Bioinformatics
build-type: Simple
-- extra-source-files:
cabal-version: >=1.10
library
exposed-modules: Bio.Motions.Representation.Class,
Bio.Motions.Representation.Chain,
Bio.Motions.Representation.Chain.Internal,
Bio.Motions.Representation.Common,
Bio.Motions.Representation.Dump,
Bio.Motions.Utils.FreezePredicateParser,
Bio.Motions.Utils.RepetitionGuard,
Bio.Motions.Callback.Class,
Bio.Motions.Callback.GyrationRadius,
Bio.Motions.Callback.StandardScore,
Bio.Motions.Callback.Parser.Parser,
Bio.Motions.Callback.Parser.TH,
Bio.Motions.EnabledCallbacks,
Bio.Motions.Types,
Bio.Motions.Common,
Bio.Motions.PDB.Meta,
Bio.Motions.PDB.Write,
Bio.Motions.PDB.Internal,
Bio.Motions.BED,
Bio.Motions.Engine
Bio.Motions.StateInitialisation
-- other-modules:
-- other-extensions:
build-depends: base >=4.8 && <4.9,
vector >=0.11 && <0.12,
linear >=1.20 && <1.21,
mono-traversable >=0.10 && <0.11,
lens >=4.13 && <4.14,
MonadRandom >=0.4 && <0.5,
mtl >=2.2 && <2.3,
containers >=0.5 && <0.6,
transformers >=0.4 && <0.5,
parsec >=3.1 && <3.2,
template-haskell >=2.10 && <2.11,
ghc-prim >=0.4 && <0.5,
constraints >=0.6 && <0.7,
random-shuffle >=0.0.4 && <0.1,
hPDB >= 1.2 && < 1.21,
bytestring >= 0.10 && < 0.11
hs-source-dirs: src
default-language: Haskell2010
executable motions
main-is: Main.hs
build-depends: base >=4.8 && <4.9,
vector >=0.11 && <0.12,
MonadRandom >=0.4 && <0.5,
optparse-applicative >=0.12 && <0.13,
transformers >=0.4 && <0.5,
motions
default-language: Haskell2010
test-suite spec
type: exitcode-stdio-1.0
main-is: Main.hs
build-depends: motions,
base >=4.8 && <4.9,
hspec >=2.2 && <2.3,
hspec-jenkins >= 0.1.1,
QuickCheck >=2.8 && <2.9,
linear >=1.20 && <1.21,
vector >=0.11 && <0.12,
mono-traversable >=0.10 && <0.11,
parsec >=3.1 && <3.2,
containers >=0.5 && <0.6,
lens >=4.13 && <4.14,
MonadRandom >=0.4 && <0.5,
mtl >=2.2 && <2.3,
transformers >=0.4 && <0.5,
smallcheck >=1.1 && <1.2,
hspec-smallcheck >=0.4 && <0.5
default-language: Haskell2010
hs-source-dirs: test
other-modules: BasicSpec,
BEDSpec,
PDBSpec,
DumpSpec,
StateInitialisationSpec,
FreezePredicateParserSpec