-
Notifications
You must be signed in to change notification settings - Fork 12
/
Graphalyze.cabal
65 lines (57 loc) · 2.27 KB
/
Graphalyze.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
Name: Graphalyze
Version: 0.15.0.0
Synopsis: Graph-Theoretic Analysis library.
Description: A library to use graph theory to analyse the relationships
inherent in discrete data.
Category: Graphs, Algorithms
License: OtherLicense
License-File: LICENSE
Copyright: (c) Ivan Lazar Miljenovic
Author: Ivan Lazar Miljenovic
Maintainer: [email protected]
Extra-Source-Files: TODO
Cabal-Version: >= 1.6
Build-Type: Simple
Tested-With: GHC == 7.4.2, GHC == 7.6.3, GHC == 7.8.4,
GHC == 7.10.2, GHC == 7.11.*
Source-Repository head
Type: git
Location: https://github.com/ivan-m/Graphalyze.git
Flag old-locale {
Description: Use old-locale and time < 1.5
Manual: False
Default: False
}
Library {
Build-Depends: base == 4.*,
array,
containers,
directory,
filepath,
process,
random,
bktrees >= 0.2 && <0.4,
fgl == 5.5.*,
graphviz >= 2999.15 && < 2999.20,
pandoc == 1.19.*,
text
if flag(old-locale) {
Build-Depends: time < 1.5,
old-locale
} else {
Build-Depends: time >= 1.5 && < 1.9
}
Exposed-Modules: Data.Graph.Analysis
Data.Graph.Analysis.Types
Data.Graph.Analysis.Utils
Data.Graph.Analysis.Visualisation
Data.Graph.Analysis.Algorithms
Data.Graph.Analysis.Algorithms.Common
Data.Graph.Analysis.Algorithms.Directed
Data.Graph.Analysis.Algorithms.Clustering
Data.Graph.Analysis.Reporting
Data.Graph.Analysis.Reporting.Pandoc
Other-Modules: Data.Graph.Analysis.Internal,
Paths_Graphalyze
Ghc-Options: -Wall
}