sphinx-autoapi/tests/jsexample/conf.py

22 lines
520 B
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2019-01-27 05:20:45 +00:00
templates_path = ["_templates"]
source_suffix = ".rst"
master_doc = "index"
2022-02-09 03:37:55 +00:00
project = "jsexample"
copyright = "2015, readthedocs"
author = "readthedocs"
2019-01-27 05:20:45 +00:00
version = "0.1"
release = "0.1"
language = None
2019-01-27 05:20:45 +00:00
exclude_patterns = ["_build"]
pygments_style = "sphinx"
todo_include_todos = False
2019-01-27 05:20:45 +00:00
html_theme = "alabaster"
html_static_path = ["_static"]
htmlhelp_basename = "jsexampledoc"
extensions = ["autoapi.extension"]
autoapi_type = "javascript"
autoapi_dirs = ["example"]
autoapi_file_pattern = "*.js"