You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.5 KiB
58 lines
1.5 KiB
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
extensions = ['sphinx.ext.todo', 'sphinx.ext.imgmath', 'sphinx.ext.githubpages']
|
|
|
|
# templates_path = ['_templates']
|
|
source_suffix = '.rst'
|
|
master_doc = 'index'
|
|
|
|
# General information about the project.
|
|
project = 'Sylvan'
|
|
copyright = '2017, Tom van Dijk'
|
|
author = 'Tom van Dijk'
|
|
version = '@PROJECT_VERSION@'
|
|
release = '@PROJECT_VERSION@'
|
|
|
|
language = None
|
|
exclude_patterns = ['Thumbs.db', '.DS_Store']
|
|
|
|
# The name of the Pygments (syntax highlighting) style to use.
|
|
pygments_style = 'sphinx'
|
|
todo_include_todos = True
|
|
|
|
# -- Options for HTML output ----------------------------------------------
|
|
|
|
# html_theme = 'alabaster'
|
|
# html_theme = 'default'
|
|
import os
|
|
if os.environ.get('READTHEDOCS', None) != 'True':
|
|
import sphinx_rtd_theme
|
|
html_theme = 'sphinx_rtd_theme'
|
|
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
|
|
|
|
# -- Options for LaTeX output ---------------------------------------------
|
|
|
|
latex_elements = {
|
|
'papersize': 'a4paper',
|
|
'pointsize': '11pt',
|
|
}
|
|
|
|
# Grouping the document tree into LaTeX files. List of tuples
|
|
# (source start file, target name, title,
|
|
# author, documentclass [howto, manual, or own class]).
|
|
latex_documents = [
|
|
(master_doc, 'Sylvan.tex', 'Sylvan Documentation',
|
|
'Tom van Dijk', 'manual'),
|
|
]
|
|
|
|
|
|
# -- Options for manual page output ---------------------------------------
|
|
|
|
# One entry per manual page. List of tuples
|
|
# (source start file, name, description, authors, manual section).
|
|
man_pages = [
|
|
(master_doc, 'sylvan', 'Sylvan Documentation',
|
|
[author], 1)
|
|
]
|
|
|