Skip to content

Commit

Permalink
update sphinx configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
trichter committed May 21, 2024
1 parent f5533fe commit 9841841
Showing 1 changed file with 6 additions and 9 deletions.
15 changes: 6 additions & 9 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,10 @@ def __getitem__(cls, name):
'sphinx.ext.viewcode'
]

autodoc_default_flags = ['members']
autodoc_default_options = {
'members': True,
# 'show-inheritance': True,
}
default_role = 'py:obj'

# Add any paths that contain templates here, relative to this directory.
Expand All @@ -107,7 +110,7 @@ def __getitem__(cls, name):

# General information about the project.
project = u'Qopen'
copyright = u'2016, Tom Eulenfeld'
copyright = u'2016-2024, Tom Eulenfeld'
author = u'Tom Eulenfeld'

# The version info for the project you're documenting, acts as replacement for
Expand All @@ -119,11 +122,6 @@ def __getitem__(cls, name):
# The short X.Y version.
version = release.split("-")[0]

#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
Expand Down Expand Up @@ -359,5 +357,4 @@ def __getitem__(cls, name):
#texinfo_no_detailmenu = False


# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {'https://docs.python.org/': None}
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}

0 comments on commit 9841841

Please sign in to comment.