Files
sigal/docs/conf.py

176 lines
5.6 KiB
Python
Raw Normal View History

2012-11-09 00:42:16 +01:00
# -*- coding: utf-8 -*-
import os
import re
import sys
2012-11-09 00:42:16 +01:00
2015-04-21 23:59:25 +02:00
import alabaster
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.
sys.path.append(os.path.abspath('..'))
pkgmeta = {}
2016-06-05 22:52:40 +02:00
pkgmeta_file = os.path.join(os.path.dirname(__file__), '..', 'sigal',
'pkgmeta.py')
with open(pkgmeta_file) as f:
code = compile(f.read(), 'pkgmeta.py', 'exec')
exec(code, pkgmeta)
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.
extensions = ['sphinx.ext.autodoc', 'sphinxcontrib.issuetracker', 'alabaster']
issuetracker = 'github'
issuetracker_project = 'saimn/sigal'
2012-11-09 00:42:16 +01:00
# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
source_suffix = '.rst'
# 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.
master_doc = 'index'
# General information about the project.
project = u'Sigal'
copyright = u'2012-2013, ' + pkgmeta['__author__']
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.
version = re.match('\d+\.\d+', pkgmeta['__version__']).group()
2012-11-09 00:42:16 +01:00
# The full version, including alpha/beta/rc tags.
release = pkgmeta['__version__']
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.
exclude_patterns = ['_build']
# 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.
pygments_style = 'sphinx'
# 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()]
html_theme = 'alabaster'
html_sidebars = {
'**': [
'about.html', 'navigation.html', 'searchbox.html', 'donate.html',
]
}
html_theme_options = {
# 'logo': 'logo.png',
'github_user': 'saimn',
'github_repo': 'sigal',
'description': "Yet another simple static gallery generator.",
'gratipay_user': 'saimn',
# '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.
htmlhelp_basename = 'Sigaldoc'