Files
sigal/docs/conf.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

169 lines
5.3 KiB
Python
Raw Normal View History

import os
import sys
2012-11-09 00:42:16 +01:00
2020-03-15 22:58:03 -03:00
import alabaster
2020-05-08 23:21:08 -04:00
from pkg_resources import get_distribution
2020-03-15 22:58:03 -03:00
2012-11-09 00:42:16 +01:00
# 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.
2023-02-12 17:31:08 +01:00
sys.path.append(os.path.abspath(".."))
2012-11-09 00:42:16 +01:00
2015-04-21 23:59:25 +02:00
# -- General configuration ----------------------------------------------------
2012-11-09 00:42:16 +01:00
# If your documentation needs a minimal Sphinx version, state it here.
2015-04-21 23:59:25 +02:00
# needs_sphinx = '1.0'
2012-11-09 00:42:16 +01:00
2015-04-21 23:59:25 +02:00
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
2023-02-12 17:31:08 +01:00
extensions = ["sphinx.ext.autodoc", "sphinx.ext.extlinks", "alabaster"]
2023-02-12 17:31:08 +01:00
extlinks = {"issue": ("https://github.com/saimn/sigal/issues/%s", "#%s")}
2012-11-09 00:42:16 +01:00
# Add any paths that contain templates here, relative to this directory.
2023-02-12 17:31:08 +01:00
templates_path = ["_templates"]
2012-11-09 00:42:16 +01:00
# The suffix of source filenames.
2023-02-12 17:31:08 +01:00
source_suffix = ".rst"
2012-11-09 00:42:16 +01:00
# The encoding of source files.
2015-04-21 23:59:25 +02:00
# source_encoding = 'utf-8-sig'
2012-11-09 00:42:16 +01:00
# The master toctree document.
2023-02-12 17:31:08 +01:00
master_doc = "index"
2012-11-09 00:42:16 +01:00
# General information about the project.
2023-02-12 17:31:08 +01:00
project = "Sigal"
copyright = "2012-2020, Simon Conseil"
2012-11-09 00:42:16 +01:00
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
# built documents.
#
# The short X.Y version.
2023-02-12 17:31:08 +01:00
release = get_distribution("sigal").version
2019-01-27 01:21:04 +01:00
# for example take major/minor
2023-02-12 17:31:08 +01:00
version = ".".join(release.split(".")[:2])
2019-01-27 01:21:04 +01:00
2012-11-09 00:42:16 +01:00
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
2015-04-21 23:59:25 +02:00
# language = None
2012-11-09 00:42:16 +01:00
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
2015-04-21 23:59:25 +02:00
# today = ''
2012-11-09 00:42:16 +01:00
# Else, today_fmt is used as the format for a strftime call.
2015-04-21 23:59:25 +02:00
# today_fmt = '%B %d, %Y'
2012-11-09 00:42:16 +01:00
# List of patterns, relative to source directory, that match files and
# directories to ignore when looking for source files.
2023-02-12 17:31:08 +01:00
exclude_patterns = ["_build"]
2012-11-09 00:42:16 +01:00
# If true, '()' will be appended to :func: etc. cross-reference text.
2015-04-21 23:59:25 +02:00
# add_function_parentheses = True
2012-11-09 00:42:16 +01:00
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
2015-04-21 23:59:25 +02:00
# add_module_names = True
2012-11-09 00:42:16 +01:00
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
2015-04-21 23:59:25 +02:00
# show_authors = False
2012-11-09 00:42:16 +01:00
# The name of the Pygments (syntax highlighting) style to use.
2023-02-12 17:31:08 +01:00
pygments_style = "sphinx"
2012-11-09 00:42:16 +01:00
# A list of ignored prefixes for module index sorting.
2015-04-21 23:59:25 +02:00
# modindex_common_prefix = []
2012-11-09 00:42:16 +01:00
2015-04-21 23:59:25 +02:00
# -- Options for HTML output --------------------------------------------------
2012-11-09 00:42:16 +01:00
2015-04-21 23:59:25 +02:00
html_theme_path = [alabaster.get_path()]
2023-02-12 17:31:08 +01:00
html_theme = "alabaster"
2015-04-21 23:59:25 +02:00
html_sidebars = {
2023-02-12 17:31:08 +01:00
"**": [
"about.html",
"navigation.html",
"searchbox.html",
"donate.html",
2015-04-21 23:59:25 +02:00
]
}
html_theme_options = {
# 'logo': 'logo.png',
2023-02-12 17:31:08 +01:00
"github_user": "saimn",
"github_repo": "sigal",
"description": "Yet another simple static gallery generator.",
2015-04-21 23:59:25 +02:00
# 'analytics_id': 'UA-18486793-2',
# 'travis_button': True,
}
# html_theme_options['extra_nav_links'] = {
# "Main website": 'http://www.paramiko.org',
# }
2012-11-09 00:42:16 +01:00
# The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
2015-04-21 23:59:25 +02:00
# html_title = None
2012-11-09 00:42:16 +01:00
# A shorter title for the navigation bar. Default is the same as html_title.
2015-04-21 23:59:25 +02:00
# html_short_title = None
2012-11-09 00:42:16 +01:00
# The name of an image file (relative to this directory) to place at the top
# of the sidebar.
2015-04-21 23:59:25 +02:00
# html_logo = None
2012-11-09 00:42:16 +01:00
# The name of an image file (within the static path) to use as favicon of the
# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
# pixels large.
2015-04-21 23:59:25 +02:00
# html_favicon = None
2012-11-09 00:42:16 +01: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".
2013-08-03 16:22:24 +02:00
# html_static_path = ['_static']
2012-11-09 00:42:16 +01:00
# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
2015-04-21 23:59:25 +02:00
# html_last_updated_fmt = '%b %d, %Y'
2012-11-09 00:42:16 +01:00
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
2015-04-21 23:59:25 +02:00
# html_use_smartypants = True
2012-11-09 00:42:16 +01:00
# Custom sidebar templates, maps document names to template names.
2015-04-21 23:59:25 +02:00
# html_sidebars = {}
2012-11-09 00:42:16 +01:00
# Additional templates that should be rendered to pages, maps page names to
# template names.
2015-04-21 23:59:25 +02:00
# html_additional_pages = {}
2012-11-09 00:42:16 +01:00
# If false, no module index is generated.
2015-04-21 23:59:25 +02:00
# html_domain_indices = True
2012-11-09 00:42:16 +01:00
# If false, no index is generated.
2015-04-21 23:59:25 +02:00
# html_use_index = True
2012-11-09 00:42:16 +01:00
# If true, the index is split into individual pages for each letter.
2015-04-21 23:59:25 +02:00
# html_split_index = False
2012-11-09 00:42:16 +01:00
# If true, links to the reST sources are added to the pages.
2015-04-21 23:59:25 +02:00
# html_show_sourcelink = True
2012-11-09 00:42:16 +01:00
# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
2015-04-21 23:59:25 +02:00
# html_show_sphinx = True
2012-11-09 00:42:16 +01:00
# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
2015-04-21 23:59:25 +02:00
# html_show_copyright = True
2012-11-09 00:42:16 +01:00
# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
2015-04-21 23:59:25 +02:00
# html_use_opensearch = ''
2012-11-09 00:42:16 +01:00
# This is the file name suffix for HTML files (e.g. ".xhtml").
2015-04-21 23:59:25 +02:00
# html_file_suffix = None
2012-11-09 00:42:16 +01:00
# Output file base name for HTML help builder.
2023-02-12 17:31:08 +01:00
htmlhelp_basename = "Sigaldoc"