offlate/doc/conf.py

conf.py

1
#!/usr/bin/env python3
2
# -*- coding: utf-8 -*-
3
#
4
# Android Strings Lib documentation build configuration file, created by
5
# sphinx-quickstart on Sat Feb 17 19:48:43 2018.
6
#
7
# This file is execfile()d with the current directory set to its
8
# containing dir.
9
#
10
# Note that not all possible configuration values are present in this
11
# autogenerated file.
12
#
13
# All configuration values have a default; values that are commented out
14
# serve to show the default.
15
16
# If extensions (or modules to document with autodoc) are in another directory,
17
# add these directories to sys.path here. If the directory is relative to the
18
# documentation root, use os.path.abspath to make it absolute, like shown here.
19
#
20
# import os
21
# import sys
22
# sys.path.insert(0, os.path.abspath('.'))
23
24
25
# -- General configuration ------------------------------------------------
26
27
# If your documentation needs a minimal Sphinx version, state it here.
28
#
29
# needs_sphinx = '1.0'
30
31
# Add any Sphinx extension module names here, as strings. They can be
32
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
33
# ones.
34
extensions = ['sphinx.ext.autodoc',
35
    'sphinx.ext.coverage']
36
37
# Add any paths that contain templates here, relative to this directory.
38
templates_path = ['_templates']
39
40
# The suffix(es) of source filenames.
41
# You can specify multiple suffix as a list of string:
42
#
43
# source_suffix = ['.rst', '.md']
44
source_suffix = '.rst'
45
46
# The master toctree document.
47
master_doc = 'index'
48
49
# General information about the project.
50
project = 'Offlate'
51
copyright = '2018, Julien Lepiller'
52
author = 'Julien Lepiller'
53
54
# The version info for the project you're documenting, acts as replacement for
55
# |version| and |release|, also used in various other places throughout the
56
# built documents.
57
#
58
# The short X.Y version.
59
version = '0.1'
60
# The full version, including alpha/beta/rc tags.
61
release = '0.1'
62
63
# The language for content autogenerated by Sphinx. Refer to documentation
64
# for a list of supported languages.
65
#
66
# This is also used if you do content translation via gettext catalogs.
67
# Usually you set "language" from the command line for these cases.
68
language = None
69
70
# List of patterns, relative to source directory, that match files and
71
# directories to ignore when looking for source files.
72
# This patterns also effect to html_static_path and html_extra_path
73
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', '.guix-profile*']
74
75
# The name of the Pygments (syntax highlighting) style to use.
76
pygments_style = 'sphinx'
77
78
# If true, `todo` and `todoList` produce output, else they produce nothing.
79
todo_include_todos = False
80
81
82
# -- Options for HTML output ----------------------------------------------
83
84
# The theme to use for HTML and HTML Help pages.  See the documentation for
85
# a list of builtin themes.
86
#
87
html_theme = 'alabaster'
88
89
# Theme options are theme-specific and customize the look and feel of a theme
90
# further.  For a list of options available for each theme, see the
91
# documentation.
92
#
93
# html_theme_options = {}
94
95
# Add any paths that contain custom static files (such as style sheets) here,
96
# relative to this directory. They are copied after the builtin static files,
97
# so a file named "default.css" will overwrite the builtin "default.css".
98
html_static_path = ['_static']
99
100
# Custom sidebar templates, must be a dictionary that maps document names
101
# to template names.
102
#
103
# This is required for the alabaster theme
104
# refs: http://alabaster.readthedocs.io/en/latest/installation.html#sidebars
105
html_sidebars = {
106
    '**': [
107
        'about.html',
108
        'navigation.html',
109
        'relations.html',  # needs 'show_related': True theme option to display
110
        'searchbox.html',
111
        'donate.html',
112
    ]
113
}
114
115
116
# -- Options for HTMLHelp output ------------------------------------------
117
118
# Output file base name for HTML help builder.
119
htmlhelp_basename = 'Offlatedoc'
120
121
122
# -- Options for LaTeX output ---------------------------------------------
123
124
latex_elements = {
125
    # The paper size ('letterpaper' or 'a4paper').
126
    #
127
    # 'papersize': 'letterpaper',
128
129
    # The font size ('10pt', '11pt' or '12pt').
130
    #
131
    # 'pointsize': '10pt',
132
133
    # Additional stuff for the LaTeX preamble.
134
    #
135
    # 'preamble': '',
136
137
    # Latex figure (float) alignment
138
    #
139
    # 'figure_align': 'htbp',
140
}
141
142
# Grouping the document tree into LaTeX files. List of tuples
143
# (source start file, target name, title,
144
#  author, documentclass [howto, manual, or own class]).
145
latex_documents = [
146
    (master_doc, 'offlate.tex', 'Offlate Documentation',
147
     'Julien Lepiller', 'manual'),
148
]
149
150
151
# -- Options for manual page output ---------------------------------------
152
153
# One entry per manual page. List of tuples
154
# (source start file, name, description, authors, manual section).
155
man_pages = [
156
    (master_doc, 'offlate', 'Offlate Documentation',
157
     [author], 1)
158
]
159
160
161
# -- Options for Texinfo output -------------------------------------------
162
163
# Grouping the document tree into Texinfo files. List of tuples
164
# (source start file, target name, title, author,
165
#  dir menu entry, description, category)
166
texinfo_documents = [
167
    (master_doc, 'Offlate', 'Offlate Documentation',
168
     author, 'Offlate', 'Local translation through online platforms.',
169
     'Miscellaneous'),
170
]
171
172
173
174