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
|
# -*- coding: utf-8 -*-
import sys
import os
import shlex
extensions = []
source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
project = u'Haddock'
copyright = u'2016, Simon Marlow'
author = u'Simon Marlow'
version = '1.0'
release = '1.0'
language = 'en'
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
exclude_patterns = ['.build']
todo_include_todos = False
# Syntax highlighting
highlight_language = 'haskell'
pygments_style = 'tango'
# -- Options for HTML output ----------------------------------------------
html_theme_path = ['./alabaster']
html_theme = 'alabaster'
htmlhelp_basename = 'Haddockdoc'
# -- Options for LaTeX output ---------------------------------------------
latex_elements = { }
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'Haddock.tex', u'Haddock Documentation',
u'Simon Marlow', 'manual'),
]
# -- Options for manual page output ---------------------------------------
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, 'haddock', u'Haddock Documentation',
[author], 1)
]
# -- Options for Texinfo output -------------------------------------------
# Grouping the document tree into Texinfo files. List of tuples
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'Haddock', u'Haddock Documentation',
author, 'Haddock', 'One line description of project.',
'Miscellaneous'),
]
|