mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-11-11 19:10:58 +00:00
22 lines
545 B
Python
22 lines
545 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
templates_path = ["_templates"]
|
|
source_suffix = ".rst"
|
|
master_doc = "index"
|
|
project = "pyexample"
|
|
copyright = "2015, readthedocs"
|
|
author = "readthedocs"
|
|
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"]
|
|
autoapi_file_pattern = "*.py"
|
|
autoapi_python_class_content = "both"
|