1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
import openapi_schema_validator
import sphinx_rtd_theme
project = "openapi-schema-validator"
copyright = "2023, Artur Maciag"
author = "Artur Maciag"
release = openapi_schema_validator.__version__
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.doctest",
"sphinx.ext.intersphinx",
"sphinx.ext.coverage",
"sphinx.ext.viewcode",
"sphinx_rtd_theme",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "sphinx_rtd_theme"
html_static_path = []
html_title = "openapi-schema-validator"
html_baseurl = "https://github.com/python-openapi/openapi-schema-validator/"
|