-
Notifications
You must be signed in to change notification settings - Fork 11
/
QuickPlot.cabal
67 lines (58 loc) · 2.14 KB
/
QuickPlot.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
name: QuickPlot
version: 0.1.0.2
synopsis: Quick and easy data visualization with Haskell
description: Please see README.md
homepage: http://github.com/tepf/QuickPlot#readme
license: GPL-3
license-file: LICENSE
author: tepf
maintainer: tepf@tutanota.com
category: Graphics
build-type: Simple
cabal-version: >=1.10
extra-source-files: README.md
data-dir: .
data-files: src/frontend/*.js
, src/frontend/*.html
, src/frontend/*.css
, src/frontend/img/*.png
library
default-language: Haskell2010
hs-source-dirs: src
exposed-modules: QuickPlot
, QuickPlot.Plotly
, QuickPlot.Vis
build-depends: base >= 4.7 && < 5
, aeson >= 0.11.2.0
, bytestring >= 0.10.6
, text >= 1.2.2
, snap >= 0.14.0.6
, snap-core >= 0.9.8
, websockets-snap >= 0.9.2
, websockets >= 0.9.6.1
, vector >= 0.11
, scientific >= 0.3.4.4
, attoparsec >= 0.13.0.1
, parsec >= 3.1.9
, template-haskell >= 2.10
, haskell-src-meta >= 0.6.0.13
other-modules: Paths_QuickPlot
, QuickPlot.IPC.Protocol
, QuickPlot.IPC.QQ
, QuickPlot.IPC.QQParser
, QuickPlot.IPC.Server
flag buildExamples
description: Build example executables
default: False
executable BasicPlotting
if flag(buildExamples)
build-depends: base >= 4.7 && < 5
, QuickPlot
else
default-language: Haskell2010
hs-source-dirs: examples
main-is: BasicPlotting.lhs
buildable: False
source-repository head
type: git
location: https://github.com/tepf/QuickPlot.git