Skip to content
Snippets Groups Projects
Select Git revision
  • 444d21c5d4e0a34a1e24e743873c6d3c688658ef
  • master default protected
  • eccs-docker
  • refactor/web-statistics-removal
  • refactor/StatisticsButtonPlacement
  • feature/webdataAPIMethod
  • feature_request2
  • v2.1.0
  • v2.0.6
  • v2.0.5
  • v2.0.4
  • v2.0.3
  • v2.0.2
  • v2.0.1
  • v2.0.0
  • v1.0.2
  • v1.0.1
  • v1.0.0
18 results

retryFailedChecks.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