This repository has been archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhaphviz.cabal
61 lines (55 loc) · 1.95 KB
/
haphviz.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
-- Initial haphviz.cabal generated by cabal init. For further
-- documentation, see http://haskell.org/cabal/users-guide/
name: haphviz
version: 0.2.0.1
synopsis: Graphviz code generation with Haskell
description:
There are multiple ways to describe this package:
.
* "A Turing-complete encoding system for graphviz"
.
* "A graph visualization code generation EDSL"
.
* "An easy way to draw graphs"
.
If any combinators are still missing, feel free to shoot the maintainer an email!
author: Tom Sydney Kerckhove
maintainer: [email protected]
copyright: Tom Sydney Kerckhove 2015
category: Text
build-type: Simple
cabal-version: >=1.10
License: MIT
License-file: LICENSE
source-repository head
type: git
location: https://github.com/NorfairKing/haphviz
library
exposed-modules: Text.Dot
Text.Dot.Class
Text.Dot.FSA
Text.Dot.Gen
Text.Dot.Render
Text.Dot.Attributes
Text.Dot.Attributes.Arrows
Text.Dot.Attributes.Styles
Text.Dot.Types.Internal
-- other-extensions:
build-depends: base >= 4.6 && < 5
, text >= 1.2 && < 1.3
, mtl >= 2.2 && < 2.3
hs-source-dirs: src
default-language: Haskell2010
test-suite haphviz-test
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: Spec.hs
build-depends: base
, haphviz
, hspec
, QuickCheck
, checkers
, quickcheck-text
, text
ghc-options: -threaded -rtsopts -with-rtsopts=-N
default-language: Haskell2010