forked from kaizhang/haskell-plot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhaskell-plot.cabal
More file actions
57 lines (53 loc) · 1.47 KB
/
haskell-plot.cabal
File metadata and controls
57 lines (53 loc) · 1.47 KB
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
-- Initial haskell-plot.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: haskell-plot
version: 0.2.0.0
synopsis: A library for generating 2D plots painlessly.
description: A pure haskell plotting library
homepage: https://github.com/kaizhang/haskell-plot
license: MIT
license-file: LICENSE
author: Kai Zhang <kai@kzhang.org>
maintainer: Kai Zhang <kai@kzhang.org>
-- copyright:
category: Graphics
build-type: Simple
cabal-version: >=1.8
source-repository head
type: git
location: https://github.com/kaizhang/haskell-plot
library
ghc-options: -O2 -Wall
hs-source-dirs: src
exposed-modules:
Diagrams.Plots
, Diagrams.Plots.Axis
, Diagrams.Plots.Bar
, Diagrams.Plots.Basic
, Diagrams.Plots.Dendrogram
, Diagrams.Plots.Graph
, Diagrams.Plots.Heatmap
, Diagrams.Plots.Types
, Diagrams.Plots.PlotArea
, Diagrams.Plots.Point
, Diagrams.Plots.Line
, Diagrams.Plots.Tick
, Diagrams.Plots.Utils
-- other-modules:
build-depends:
base >=4 && <5
, lens >=3.10
, data-default >=0.5
, diagrams-svg >=1.1
, diagrams-lib >=1.2
, diagrams-cairo >=1.2
, diagrams-contrib >=1.1
, SVGFonts
, palette
, colour
, containers
, unordered-containers
, mtl
, clustering
, void
, vector