1
|
|
|
# -*- coding: utf-8 -*- |
2
|
|
|
# |
3
|
|
|
# Configuration file for the Sphinx documentation builder. |
4
|
|
|
# |
5
|
|
|
# This file does only contain a selection of the most common options. For a |
6
|
|
|
# full list see the documentation: |
7
|
|
|
# http://www.sphinx-doc.org/en/master/config |
8
|
|
|
|
9
|
|
|
# -- Path setup -------------------------------------------------------------- |
10
|
|
|
|
11
|
|
|
# If extensions (or modules to document with autodoc) are in another directory, |
12
|
|
|
# add these directories to sys.path here. If the directory is relative to the |
13
|
|
|
# documentation root, use os.path.abspath to make it absolute, like shown here. |
14
|
|
|
# |
15
|
|
|
import os |
16
|
|
|
import sys |
17
|
|
|
|
18
|
|
|
# Get the project root dir, which is the parent dir of this |
19
|
|
|
cwd = os.getcwd() |
20
|
|
|
project_root = os.path.dirname(cwd) |
21
|
|
|
|
22
|
|
|
# Insert the project root dir as the first element in the PYTHONPATH. |
23
|
|
|
# This lets us ensure that the source package is imported, and that its |
24
|
|
|
# version is used. |
25
|
|
|
sys.path.insert(0, project_root) |
26
|
|
|
|
27
|
|
|
|
28
|
|
|
def setup(app): |
29
|
|
|
app.add_css_file('width_style.css') |
30
|
|
|
|
31
|
|
|
|
32
|
|
|
# -- Project information ----------------------------------------------------- |
33
|
|
|
|
34
|
|
|
project = 'Tradehub Python' |
35
|
|
|
copyright = '2021, Switcheolytics & Pascal Kelbing' |
36
|
|
|
author = 'Switcheolytics & Pascal Kelbing' |
37
|
|
|
|
38
|
|
|
# The short X.Y version |
39
|
|
|
version = '' |
40
|
|
|
# The full version, including alpha/beta/rc tags |
41
|
|
|
release = '0.0.1' |
42
|
|
|
|
43
|
|
|
|
44
|
|
|
# -- General configuration --------------------------------------------------- |
45
|
|
|
|
46
|
|
|
# If your documentation needs a minimal Sphinx version, state it here. |
47
|
|
|
# |
48
|
|
|
# needs_sphinx = '1.0' |
49
|
|
|
|
50
|
|
|
# Add any Sphinx extension module names here, as strings. They can be |
51
|
|
|
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
52
|
|
|
# ones. |
53
|
|
|
extensions = [ |
54
|
|
|
'sphinx.ext.autodoc', |
55
|
|
|
'sphinx.ext.viewcode', |
56
|
|
|
'autodocsumm' |
57
|
|
|
] |
58
|
|
|
|
59
|
|
|
# Add any paths that contain templates here, relative to this directory. |
60
|
|
|
templates_path = ['_templates'] |
61
|
|
|
|
62
|
|
|
# The suffix(es) of source filenames. |
63
|
|
|
# You can specify multiple suffix as a list of string: |
64
|
|
|
# |
65
|
|
|
# source_suffix = ['.rst', '.md'] |
66
|
|
|
source_suffix = '.rst' |
67
|
|
|
|
68
|
|
|
# The master toctree document. |
69
|
|
|
master_doc = 'index' |
70
|
|
|
|
71
|
|
|
# The language for content autogenerated by Sphinx. Refer to documentation |
72
|
|
|
# for a list of supported languages. |
73
|
|
|
# |
74
|
|
|
# This is also used if you do content translation via gettext catalogs. |
75
|
|
|
# Usually you set "language" from the command line for these cases. |
76
|
|
|
language = None |
77
|
|
|
|
78
|
|
|
# List of patterns, relative to source directory, that match files and |
79
|
|
|
# directories to ignore when looking for source files. |
80
|
|
|
# This pattern also affects html_static_path and html_extra_path . |
81
|
|
|
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store'] |
82
|
|
|
|
83
|
|
|
# The name of the Pygments (syntax highlighting) style to use. |
84
|
|
|
pygments_style = 'sphinx' |
85
|
|
|
|
86
|
|
|
|
87
|
|
|
# -- Options for HTML output ------------------------------------------------- |
88
|
|
|
|
89
|
|
|
# The theme to use for HTML and HTML Help pages. See the documentation for |
90
|
|
|
# a list of builtin themes. |
91
|
|
|
# |
92
|
|
|
html_theme = 'sphinx_rtd_theme' |
93
|
|
|
|
94
|
|
|
# Theme options are theme-specific and customize the look and feel of a theme |
95
|
|
|
# further. For a list of options available for each theme, see the |
96
|
|
|
# documentation. |
97
|
|
|
# |
98
|
|
|
# html_theme_options = {} |
99
|
|
|
|
100
|
|
|
# Add any paths that contain custom static files (such as style sheets) here, |
101
|
|
|
# relative to this directory. They are copied after the builtin static files, |
102
|
|
|
# so a file named "default.css" will overwrite the builtin "default.css". |
103
|
|
|
html_static_path = ['_static'] |
104
|
|
|
|
105
|
|
|
# Custom sidebar templates, must be a dictionary that maps document names |
106
|
|
|
# to template names. |
107
|
|
|
# |
108
|
|
|
# The default sidebars (for documents that don't match any pattern) are |
109
|
|
|
# defined by theme itself. Builtin themes are using these templates by |
110
|
|
|
# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', |
111
|
|
|
# 'searchbox.html']``. |
112
|
|
|
# |
113
|
|
|
# html_sidebars = {} |
114
|
|
|
|
115
|
|
|
|
116
|
|
|
# -- Options for HTMLHelp output --------------------------------------------- |
117
|
|
|
|
118
|
|
|
# Output file base name for HTML help builder. |
119
|
|
|
htmlhelp_basename = 'TradehubPythondoc' |
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, 'TradehubPython.tex', 'Tradehub Python Documentation', |
147
|
|
|
'Switcheolytics & Pascal Kelbing', '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, 'tradehubpython', 'Tradehub Python 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, 'TradehubPython', 'Tradehub Python Documentation', |
168
|
|
|
author, 'TradehubPython', 'One line description of project.', |
169
|
|
|
'Miscellaneous'), |
170
|
|
|
] |
171
|
|
|
|
172
|
|
|
|
173
|
|
|
# -- Extension configuration ------------------------------------------------- |
174
|
|
|
|