FitTrackee/docsrc/source/conf.py

86 lines
2.5 KiB
Python
Raw Normal View History

2019-07-14 14:44:32 +02:00
# Configuration file for the Sphinx documentation builder.
#
# This file only contains a selection of the most common options. For a full
# list see the documentation:
# http://www.sphinx-doc.org/en/master/config
# -- Path setup --------------------------------------------------------------
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
2019-07-14 14:59:44 +02:00
import os
import sys
2019-08-03 11:50:34 +02:00
from pathlib import Path
2019-07-14 14:44:32 +02:00
2019-07-14 15:31:04 +02:00
import sphinx_bootstrap_theme
sys.path.insert(0, os.path.abspath('../../fittrackee'))
2019-07-14 14:44:32 +02:00
def setup(app):
2020-12-25 19:14:37 +01:00
app.add_css_file("custom.css")
2019-07-14 14:44:32 +02:00
# -- Project information -----------------------------------------------------
project = 'FitTrackee'
2021-04-06 14:03:42 +02:00
copyright = '2018 - 2021, SamR1'
2019-07-14 14:44:32 +02:00
author = 'SamR1'
2019-08-03 11:50:34 +02:00
# The full version, including alpha/beta/rc tags.
release = (Path(__file__).parent.parent.parent / 'VERSION').read_text()
2019-07-21 11:12:34 +02:00
# The short X.Y version.
2019-08-03 11:50:34 +02:00
version = release.split('-')[0]
2019-07-14 14:44:32 +02:00
# -- General configuration ---------------------------------------------------
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
2019-07-14 18:23:52 +02:00
'recommonmark',
2019-07-14 14:59:44 +02:00
'sphinxcontrib.autohttp.flask'
2019-07-14 14:44:32 +02:00
]
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
# This pattern also affects html_static_path and html_extra_path.
exclude_patterns = []
# -- Options for HTML output -------------------------------------------------
# The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes.
#
2019-07-14 15:31:04 +02:00
html_theme = 'bootstrap'
html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
2019-07-14 14:44:32 +02:00
# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
2019-07-14 15:31:04 +02:00
html_theme_options = {
2019-07-14 20:44:10 +02:00
'navbar_site_name': 'Docs',
2019-07-14 15:31:04 +02:00
'bootswatch_theme': 'flatly',
'navbar_links': [
('GitHub', 'https://github.com/SamR1/FitTrackee', True),
],
2019-07-14 15:31:04 +02:00
}
2019-07-14 18:23:52 +02:00
# -- Sources configuration ---------------------------------------------------
source_suffix = {
'.rst': 'restructuredtext',
'.txt': 'markdown',
'.md': 'markdown',
}