Skip to content
Snippets Groups Projects
Select Git revision
  • 4eed15c844decde1cce8c93da98725c742cbe9d3
  • develop default
  • master protected
  • release/3.6
  • pyproject_toml
  • 3.8
  • 3.7
  • 3.5
  • 3.4
  • 3.3
  • 3.2
  • 3.1
  • 3.0
  • 2.15
  • 2.14
  • 2.13
  • 2.12
  • 2.11
  • 2.10
  • 2.9
  • 2.8
  • 2.6
  • 2.5
  • 2.4
  • 2.3
25 results

setup.py

Blame
  • conf.py 1015 B
    # -- Project information -----------------------------------------------------
    project = "GÉANT Service Orchestrator"
    copyright = "2023, GÉANT Vereniging"
    author = "GÉANT Orchestration and Automation Team"
    
    # -- General configuration ---------------------------------------------------
    extensions = ["sphinx_rtd_theme", "sphinx.ext.autodoc", "sphinxcontrib.jquery"]
    
    templates_path = ["templates"]
    exclude_patterns = ["build", "Thumbs.db", ".DS_Store", "venv", "vale", "__init__.py"]
    
    # -- Options for HTML output -------------------------------------------------
    html_theme = "sphinx_rtd_theme"
    html_static_path = ["static"]
    html_theme_options = {
        "style_nav_header_background": "rgb(0 63 95)",
    }
    html_css_files = ["custom.css"]
    html_js_files = ["custom.js"]
    html_logo = "static/geant_logo_white.svg"
    
    # Both the class' and the ``__init__`` method's docstring are concatenated and inserted.
    autoclass_content = "both"
    autodoc_typehints = "none"
    
    # Display todos by setting to True
    todo_include_todos = True