Commit ·
c535626
1
Parent(s): 40d79fb
Upload conf.py
Browse files
conf.py
ADDED
|
@@ -0,0 +1,36 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Configuration file for the Sphinx documentation builder.
|
| 2 |
+
|
| 3 |
+
# -- Project information
|
| 4 |
+
|
| 5 |
+
project = 'Venus Documentation'
|
| 6 |
+
# copyright = 'None'
|
| 7 |
+
author = 'TChapman'
|
| 8 |
+
|
| 9 |
+
release = '0.1'
|
| 10 |
+
version = '0.1.0'
|
| 11 |
+
|
| 12 |
+
# -- General configuration
|
| 13 |
+
|
| 14 |
+
extensions = [
|
| 15 |
+
'sphinx.ext.duration',
|
| 16 |
+
'sphinx.ext.doctest',
|
| 17 |
+
'sphinx.ext.autodoc',
|
| 18 |
+
'sphinx.ext.autosummary',
|
| 19 |
+
'sphinx.ext.intersphinx',
|
| 20 |
+
]
|
| 21 |
+
|
| 22 |
+
intersphinx_mapping = {
|
| 23 |
+
'python': ('https://docs.python.org/3/', None),
|
| 24 |
+
'sphinx': ('https://www.sphinx-doc.org/en/master/', None),
|
| 25 |
+
}
|
| 26 |
+
intersphinx_disabled_domains = ['std']
|
| 27 |
+
|
| 28 |
+
templates_path = ['_templates']
|
| 29 |
+
|
| 30 |
+
# -- Options for HTML output
|
| 31 |
+
|
| 32 |
+
html_theme = 'sphinx_rtd_theme'
|
| 33 |
+
|
| 34 |
+
html_theme_options = {'body_max_width': '40%'}
|
| 35 |
+
|
| 36 |
+
epub_show_urls = 'footnote'
|