2019-04-06 18:16:40 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
templates_path = ["_templates"]
|
|
|
|
source_suffix = ".rst"
|
|
|
|
master_doc = "index"
|
2022-02-09 03:37:55 +00:00
|
|
|
project = "pyexample"
|
|
|
|
copyright = "2015, readthedocs"
|
|
|
|
author = "readthedocs"
|
2019-04-06 18:16:40 +00:00
|
|
|
version = "0.1"
|
|
|
|
release = "0.1"
|
|
|
|
language = None
|
|
|
|
exclude_patterns = ["_build"]
|
|
|
|
pygments_style = "sphinx"
|
|
|
|
todo_include_todos = False
|
|
|
|
html_theme = "alabaster"
|
|
|
|
htmlhelp_basename = "pyexampledoc"
|
|
|
|
extensions = ["sphinx.ext.autodoc", "autoapi.extension"]
|
|
|
|
autoapi_type = "python"
|
|
|
|
autoapi_dirs = ["example"]
|
2020-09-01 04:17:57 +00:00
|
|
|
autoapi_file_patterns = ["*.pyi", "*.py"]
|