|
| 1 | +#!/usr/bin/env python |
| 2 | +# Copyright 2025, Universal Robots A/S |
| 3 | +# |
| 4 | +# Redistribution and use in source and binary forms, with or without |
| 5 | +# modification, are permitted provided that the following conditions are met: |
| 6 | +# |
| 7 | +# * Redistributions of source code must retain the above copyright |
| 8 | +# notice, this list of conditions and the following disclaimer. |
| 9 | +# |
| 10 | +# * Redistributions in binary form must reproduce the above copyright |
| 11 | +# notice, this list of conditions and the following disclaimer in the |
| 12 | +# documentation and/or other materials provided with the distribution. |
| 13 | +# |
| 14 | +# * Neither the name of the {copyright_holder} nor the names of its |
| 15 | +# contributors may be used to endorse or promote products derived from |
| 16 | +# this software without specific prior written permission. |
| 17 | +# |
| 18 | +# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
| 19 | +# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 20 | +# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 21 | +# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE |
| 22 | +# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 23 | +# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 24 | +# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS |
| 25 | +# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN |
| 26 | +# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) |
| 27 | +# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
| 28 | +# POSSIBILITY OF SUCH DAMAGE. |
| 29 | + |
| 30 | +project = "ur_moveit_config" |
| 31 | +copyright = "2025, Universal Robots A/S" |
| 32 | +author = "Felix Exner" |
| 33 | + |
| 34 | +# The short X.Y version |
| 35 | +version = "" |
| 36 | +# The full version, including alpha/beta/rc tags |
| 37 | +release = "" |
| 38 | + |
| 39 | +# -- General configuration --------------------------------------------------- |
| 40 | + |
| 41 | +# If your documentation needs a minimal Sphinx version, state it here. |
| 42 | +# |
| 43 | +# needs_sphinx = '1.0' |
| 44 | + |
| 45 | +# Add any Sphinx extension module names here, as strings. They can be |
| 46 | +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom |
| 47 | +# ones. |
| 48 | +extensions = [] |
| 49 | + |
| 50 | +suppress_warnings = ["ref.ref"] |
| 51 | + |
| 52 | +# Add any paths that contain templates here, relative to this directory. |
| 53 | +templates_path = ["_templates"] |
| 54 | + |
| 55 | +# The suffix(es) of source filenames. |
| 56 | +# You can specify multiple suffix as a list of string: |
| 57 | +# |
| 58 | +source_suffix = [".rst"] |
| 59 | + |
| 60 | +# The master toctree document. |
| 61 | +master_doc = "index" |
| 62 | + |
| 63 | +numfig = True |
| 64 | + |
| 65 | +# The language for content autogenerated by Sphinx. Refer to documentation |
| 66 | +# for a list of supported languages. |
| 67 | +# |
| 68 | +# This is also used if you do content translation via gettext catalogs. |
| 69 | +# Usually you set "language" from the command line for these cases. |
| 70 | +language = "en" |
| 71 | + |
| 72 | +# List of patterns, relative to source directory, that match files and |
| 73 | +# directories to ignore when looking for source files. |
| 74 | +# This pattern also affects html_static_path and html_extra_path. |
| 75 | +exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] |
| 76 | + |
| 77 | +# The name of the Pygments (syntax highlighting) style to use. |
| 78 | +pygments_style = None |
| 79 | + |
| 80 | +# -- Options for HTML output ------------------------------------------------- |
| 81 | + |
| 82 | +# The theme to use for HTML and HTML Help pages. See the documentation for |
| 83 | +# a list of builtin themes. |
| 84 | +# |
| 85 | +html_theme = "alabaster" |
| 86 | + |
| 87 | +# Theme options are theme-specific and customize the look and feel of a theme |
| 88 | +# further. For a list of options available for each theme, see the |
| 89 | +# documentation. |
| 90 | +# |
| 91 | +# html_theme_options = {} |
| 92 | + |
| 93 | +# Add any paths that contain custom static files (such as style sheets) here, |
| 94 | +# relative to this directory. They are copied after the builtin static files, |
| 95 | +# so a file named "default.css" will overwrite the builtin "default.css". |
| 96 | +# html_static_path = ["_static"] |
| 97 | + |
| 98 | +# Custom sidebar templates, must be a dictionary that maps document names |
| 99 | +# to template names. |
| 100 | +# |
| 101 | +# The default sidebars (for documents that don't match any pattern) are |
| 102 | +# defined by theme itself. Builtin themes are using these templates by |
| 103 | +# default: ``['localtoc.html', 'relations.html', 'sourcelink.html', |
| 104 | +# 'searchbox.html']``. |
| 105 | +# |
| 106 | +# html_sidebars = {} |
| 107 | + |
| 108 | + |
| 109 | +# -- Options for HTMLHelp output --------------------------------------------- |
| 110 | + |
| 111 | +# Output file base name for HTML help builder. |
| 112 | +htmlhelp_basename = "ur_moveit_config_doc" |
| 113 | + |
| 114 | + |
| 115 | +# -- Options for LaTeX output ------------------------------------------------ |
0 commit comments