-
Notifications
You must be signed in to change notification settings - Fork 2
/
infovis-parallel.cabal
93 lines (87 loc) · 3.92 KB
/
infovis-parallel.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
name: infovis-parallel
version: 0.2.3.12
synopsis: Parallel-planes information visualization.
description: This information visualization shows multidimensional data as parallel planes with scatterplots connected by lines for corresponding data points. It is a three-dimensional generalization of the two-dimensional parallel coordinate plots.
license: MIT
license-file: LICENSE
author: Brian W Bush <[email protected]>
maintainer: Brian W Bush <[email protected]>
copyright: (c) 2016 National Renewable Energy Laboratory
category: Graphics
build-type: Simple
cabal-version: >= 1.10
homepage: https://github.com/NREL/infovis-parallel.git
bug-reports: https://bwbush.atlassian.net/projects/HIVPP/issues/
package-url: https://github.com/NREL/infovis-parallel/releases/
extra-source-files: ReadMe.md
data-dir: data
data-files: ENB2012.md
ENB2012.tsv
projector.yaml
diagnostics.yaml
ESIF.yaml
source-repository head
type: git
location: https://github.com/NREL/infovis-parallel.git
library
build-depends: base >= 4.8.1 && < 5
, aeson >= 0.10
, array >= 0.5.1
, binary >= 0.7.5
, bytestring >= 0.10.6
, containers >= 0.5.6.2
, data-default >= 0.5.3
, distributed-process >= 0.5.5.1
, distributed-process-simplelocalnet >= 0.2.3.1
, GLUT >= 2.7.0.1
, handa-data >= 0.2.12.8
, handa-opengl >= 0.1.12.1
, handa-relational >= 0.2.1.4
, network >= 2.6.2.1
, network-transport >= 0.4.2
, opengl-dlp-stereo >= 0.1.5.2
, opengl-spacenavigator >= 0.1.5.4
, OpenGL >= 2.12.0.1
, random >= 1.1
, vector-space >= 0.10.2
, vrpn >= 0.2.1.3
, yaml >= 0.8.15.2
exposed-modules: Control.Distributed.Process.Backend.SimpleWidenet
InfoVis.Parallel.Planes.Configuration
InfoVis.Parallel.Planes.Control
InfoVis.Parallel.Planes.Control.Master
InfoVis.Parallel.Planes.Control.VRPN
InfoVis.Parallel.Planes.Grid
hs-source-dirs: src
exposed: True
buildable: True
ghc-options: -threaded -Wall
default-language: Haskell2010
executable infovis-parallel
main-is: Main.hs
build-depends: base
, aeson
, array
, binary
, bytestring
, cmdargs
, containers
, data-default
, distributed-process
, distributed-process-simplelocalnet
, GLUT
, handa-data
, handa-opengl
, handa-relational
, network
, network-transport
, opengl-dlp-stereo
, opengl-spacenavigator
, OpenGL
, random
, vector-space
, vrpn
, yaml
hs-source-dirs: src
ghc-options: -threaded -Wall
default-language: Haskell2010