-
Notifications
You must be signed in to change notification settings - Fork 2
/
conf.py
33 lines (27 loc) · 945 Bytes
/
conf.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Stingray documentation build configuration file, created by
# sphinx-quickstart on Thu Feb 1 17:02:36 2018.
#
# This file is execfile()d with the current directory set to its
# containing dir.
#
# Note that not all possible configuration values are present in this
# autogenerated file.
#
# All configuration values have a default; values that are commented out
# serve to show the default.
# If extensions (or modules to document with autodoc) are in another directory,
# add these directories to sys.path here. If the directory is relative to the
# documentation root, use os.path.abspath to make it absolute, like shown here.
#
import os
import sys
sys.path.insert(0, os.path.abspath('.'))
# Simply redirect to the new home of the Stingray documentation.
extensions = ['sphinx_reredirects']
redirects = {
"*": "https://stingraysoftware.github.io/stingray/"
}
master_doc = 'index'