python-compute/docs/source/conf.py

34 lines
675 B
Python
Raw Permalink Normal View History

2023-11-23 02:34:02 +03:00
# Add ../.. to path for autodoc Sphinx extension
2023-11-06 17:47:56 +03:00
import os
import sys
2023-11-23 02:34:02 +03:00
sys.path.insert(0, os.path.abspath('../..'))
2023-11-06 12:52:19 +03:00
2023-11-06 17:47:56 +03:00
# Project information
2023-11-06 12:52:19 +03:00
project = 'Compute'
copyright = '2023, Compute Authors'
author = 'Compute Authors'
release = '0.1.0'
2023-11-06 17:47:56 +03:00
# Sphinx general settings
extensions = [
'sphinx.ext.autodoc',
'sphinx_multiversion',
]
2023-11-06 12:52:19 +03:00
templates_path = ['_templates']
exclude_patterns = []
2023-11-06 18:38:24 +03:00
language = 'en'
2023-11-06 12:52:19 +03:00
2023-11-06 17:47:56 +03:00
# HTML output settings
2023-11-06 12:52:19 +03:00
html_theme = 'alabaster'
html_static_path = ['_static']
2023-11-06 17:47:56 +03:00
html_sidebars = {
'**': [
'about.html',
'navigation.html',
'relations.html',
'searchbox.html',
'donate.html',
'versioning.html',
]
}