-
Notifications
You must be signed in to change notification settings - Fork 2
/
process-mining.cabal
68 lines (63 loc) · 2.37 KB
/
process-mining.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
name: process-mining
version: 0.0.1
synopsis: A library for process mining
license: BSD3
license-file: LICENSE
author: Tuura authors (see AUTHORS file)
maintainer: Andrey Mokhov <[email protected]>, github: @snowleopard
copyright: Tuura authors (see AUTHORS file), 2015
homepage: https://github.com/tuura/process-mining.git
category: Algorithms, Pattern Classification, Process mining
build-type: Simple
cabal-version: >=1.10
source-repository head
type: git
location: https://github.com/tuura/process-mining.git
library
hs-source-dirs: src
exposed-modules: Tuura.Concurrency,
Tuura.Graph,
Tuura.Log,
Tuura.Macro,
Tuura.Relation,
Tuura.Function
build-depends: array == 0.5.*,
base >= 4.7 && < 5,
extra >= 1.4 && < 1.7,
filepath,
containers == 0.5.*
default-language: Haskell2010
other-extensions: TypeFamilies
GHC-options: -Wall -fno-warn-name-shadowing -fwarn-tabs -O2
test-suite pgminer-test
type: exitcode-stdio-1.0
main-is: Test.hs
build-depends: base >= 4.7 && < 5,
containers == 0.5.*,
process-mining
other-extensions: TypeFamilies
default-language: Haskell2010
GHC-options: -Wall -fno-warn-name-shadowing -fwarn-tabs
executable pgminer
hs-source-dirs: pgminer
main-is: Main.hs
build-depends: base >= 4.7 && < 5,
containers == 0.5.*,
filepath,
process-mining
other-modules: Tuura.PGminer.Main,
Tuura.PGminer.Options
other-extensions: TypeFamilies
default-language: Haskell2010
GHC-options: -Wall -fno-warn-name-shadowing -fwarn-tabs -O2
executable macroscope
hs-source-dirs: macroscope
main-is: Main.hs
build-depends: base >= 4.7 && < 5,
containers == 0.5.*,
extra >= 1.4 && < 1.7,
process-mining
other-modules: Tuura.Macroscope.Main
other-extensions: TypeFamilies
default-language: Haskell2010
GHC-options: -Wall -fno-warn-name-shadowing -fwarn-tabs -O2