mirror of
https://github.com/readthedocs/sphinx-autoapi
synced 2024-10-31 21:20:17 +00:00
23 lines
543 B
Python
23 lines
543 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
templates_path = ["_templates"]
|
|
source_suffix = ".rst"
|
|
master_doc = "index"
|
|
project = "goexample"
|
|
copyright = "2015, readthedocs"
|
|
author = "readthedocs"
|
|
version = "0.1"
|
|
release = "0.1"
|
|
language = "en"
|
|
exclude_patterns = ["_build"]
|
|
pygments_style = "sphinx"
|
|
todo_include_todos = False
|
|
html_theme = "alabaster"
|
|
html_static_path = ["_static"]
|
|
htmlhelp_basename = "goexampledoc"
|
|
extensions = ["autoapi.extension", "sphinxcontrib.golangdomain"]
|
|
|
|
autoapi_type = "go"
|
|
autoapi_dirs = ["example"]
|
|
autoapi_file_pattern = "*.go"
|