python-compute/docs/source/conf.py

34 lines
652 B
Python
Raw Permalink Normal View History

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'
2024-05-17 00:07:51 +03:00
release = '0.1.0-dev5'
2023-11-06 12:52:19 +03:00
2023-11-06 17:47:56 +03:00
# Sphinx general settings
extensions = [
'sphinx.ext.autodoc',
'sphinx_multiversion',
2023-12-03 23:25:34 +03:00
'sphinxarg.ext',
2023-11-06 17:47:56 +03:00
]
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',
]
}