| # |
| # Licensed to the Apache Software Foundation (ASF) under one or more |
| # contributor license agreements. See the NOTICE file distributed with |
| # this work for additional information regarding copyright ownership. |
| # The ASF licenses this file to You under the Apache License, Version 2.0 |
| # (the "License"); you may not use this file except in compliance with |
| # the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| """Sphinx configuration for otava-test-data.""" |
| |
| project = "otava-test-data" |
| copyright = "2025, Joe Drumgoole" |
| author = "Joe Drumgoole" |
| version = "0.1.3" |
| |
| extensions = [ |
| "sphinx.ext.autodoc", |
| "sphinx.ext.napoleon", |
| "sphinx.ext.viewcode", |
| "myst_parser", |
| ] |
| |
| templates_path = ["_templates"] |
| exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
| |
| html_theme = "sphinx_rtd_theme" |
| html_static_path = ["_static"] |
| |
| # MyST settings for markdown |
| myst_enable_extensions = [ |
| "colon_fence", |
| "deflist", |
| ] |
| |
| # Napoleon settings for docstrings |
| napoleon_google_docstring = True |
| napoleon_numpy_docstring = True |