File: conf.py

package info (click to toggle)
sphinxext-rediraffe 0.3.0-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 944 kB
  • sloc: python: 1,361; makefile: 20
file content (34 lines) | stat: -rw-r--r-- 607 bytes parent folder | download
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
29
30
31
32
33
34
from __future__ import annotations

import sphinxext.rediraffe

copyright = (
    '2020, FIRST',
    '2025-%Y, the Sphinx developers',
)

version = release = sphinxext.rediraffe.__version__

master_doc = 'index'
project = 'sphinxext-rediraffe'

exclude_patterns = ['_build']

nitpicky = True

html_theme = 'furo'
html_logo = '../assets/rediraffe_logo_128.png'

extensions = [
    'sphinx.ext.intersphinx',
    'sphinxext.rediraffe',
]

intersphinx_mapping = {
    'sphinx': ("/usr/share/doc/sphinx-doc/html/", None),
}

rediraffe_redirects = {
    'other.rst': 'index.rst',
    'other2.rst': 'other.rst',
}