Skip to content
Snippets Groups Projects
Commit 01c9d122 authored by Tiago de Freitas Pereira's avatar Tiago de Freitas Pereira
Browse files

Replaced conf.py

parent 5c331b84
No related branches found
No related tags found
1 merge request!2Pre release
Pipeline #
......@@ -111,7 +111,7 @@ pygments_style = 'sphinx'
# Some variables which are useful for generated material
project_variable = project.replace('.', '_')
short_description = u'Run Gaussian mixture model based algorithms'
short_description = u'Tools for running biometric recognition experiments'
owner = [u'Idiap Research Institute']
......@@ -216,8 +216,13 @@ autodoc_default_flags = [
]
# For inter-documentation mapping:
from bob.extension.utils import link_documentation
intersphinx_mapping = link_documentation()
from bob.extension.utils import link_documentation, load_requirements
sphinx_requirements = "./extra-intersphinx.txt"
if os.path.exists(sphinx_requirements):
intersphinx_mapping = link_documentation(additional_packages=load_requirements(sphinx_requirements))
else:
intersphinx_mapping = link_documentation()
# We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment