-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraphdoc.cabal
More file actions
105 lines (83 loc) · 3.15 KB
/
graphdoc.cabal
File metadata and controls
105 lines (83 loc) · 3.15 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
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
94
95
96
97
98
99
100
101
102
103
104
105
cabal-version: >=1.10
name: graphdoc
-- https://pvp.haskell.org
-- PVP summary: +-+------- breaking API changes
-- | | +----- non-breaking API additions
-- | | | +--- code changes with no API change
version: 0.1.0.0
synopsis: Documentation from any format, to any format, on your disk.
-- A longer description of the package.
-- description: TODO
homepage: https://github.com/Tass0sm/graphdoc
bug-reports: https://github.com/Tass0sm/graphdoc/issues
license: GPL-3
license-file: LICENSE
author: Tassos Manganaris
maintainer: tassos.manganaris@gmail.com
-- A copyright notice.
-- copyright:
category: Development
build-type: Simple
-- Extra files to be distributed with the package, such as examples or a
-- README.
extra-source-files: CHANGELOG.md
README.org
library
exposed-modules: Text.Graphdoc
, Text.Graphdoc.Class
, Text.Graphdoc.Readers
, Text.Graphdoc.Writers
other-modules: Text.Graphdoc.Definition
, Text.Graphdoc.Class.GraphdocIO
, Text.Graphdoc.Class.GraphdocMonad
, Text.Graphdoc.Graph.Definition
, Text.Graphdoc.Graph.Utils
, Text.Graphdoc.Readers.Book
, Text.Graphdoc.Readers.HTML
, Text.Graphdoc.Writers.Texinfo
, Text.Graphdoc.Parsing
, Text.Graphdoc.Parsing.Blocks
, Text.Graphdoc.Parsing.Inlines
, Text.Graphdoc.Parsing.Shared
, Text.Graphdoc.Error
, Text.Graphdoc.Utils
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base
, text
, filepath
, directory-tree
, containers
, pandoc-types
, pandoc
, parsec
, mtl
, fgl
-- Directories containing source files.
hs-source-dirs: src
-- Base language which the package is written in.
default-language: Haskell2010
executable graphdoc
main-is: Main.hs
other-modules:
-- LANGUAGE extensions used by modules in this package.
-- other-extensions:
build-depends: base
, text
, directory-tree
, containers
, graphdoc
, pandoc
hs-source-dirs: src-exe
default-language: Haskell2010
test-suite graphdoc-test
default-language: Haskell2010
-- The interface type and version of the test suite.
type: exitcode-stdio-1.0
hs-source-dirs: test
main-is: test-treedoc.hs
build-depends: base >=4.14 && <4.15
, text >=1.2 && <1.3
, containers >=0.6 && <0.7
, pandoc
, graphdoc