2015-06-10 17:33:18 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2019-01-27 05:20:45 +00:00
|
|
|
templates_path = ["_templates"]
|
|
|
|
source_suffix = ".rst"
|
|
|
|
master_doc = "index"
|
|
|
|
project = u"pyexample"
|
|
|
|
copyright = u"2015, rtfd"
|
|
|
|
author = u"rtfd"
|
|
|
|
version = "0.1"
|
|
|
|
release = "0.1"
|
2015-06-10 17:33:18 +00:00
|
|
|
language = None
|
2019-01-27 05:20:45 +00:00
|
|
|
exclude_patterns = ["_build"]
|
|
|
|
pygments_style = "sphinx"
|
2015-06-10 17:33:18 +00:00
|
|
|
todo_include_todos = False
|
2019-01-27 05:20:45 +00:00
|
|
|
html_theme = "alabaster"
|
|
|
|
html_static_path = ["_static"]
|
|
|
|
htmlhelp_basename = "pyexampledoc"
|
|
|
|
extensions = ["autoapi.extension"]
|
|
|
|
autoapi_type = "python"
|
|
|
|
autoapi_dirs = ["example"]
|
|
|
|
autoapi_file_pattern = "*.py"
|
|
|
|
autoapi_template_dir = "template_overrides"
|
2015-06-10 17:33:18 +00:00
|
|
|
|
2019-01-27 05:20:45 +00:00
|
|
|
exclude_patterns = [autoapi_template_dir]
|