Skip to content

Commit

Permalink
docs(Sphinx): Adjust configuration for autodoc build.
Browse files Browse the repository at this point in the history
  • Loading branch information
nefarioustim committed Dec 31, 2018
1 parent b3e170b commit 6da89f9
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,16 @@
# 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('.'))

import os
import sys
sys.path.insert(0, os.path.abspath('../src/'))


# -- Project information -----------------------------------------------------

project = 'Cerberus'
copyright = '2019, Wyrd Technology'
copyright = '2019 Wyrd Technology'
author = 'Tim Huegdon'

# The short X.Y version
Expand All @@ -40,7 +40,7 @@
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.napoleon'
'sphinx.ext.napoleon',
]

# Add any paths that contain templates here, relative to this directory.
Expand Down Expand Up @@ -68,7 +68,7 @@
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']

# The name of the Pygments (syntax highlighting) style to use.
pygments_style = None
pygments_style = 'sphinx'


# -- Options for HTML output -------------------------------------------------
Expand Down

0 comments on commit 6da89f9

Please sign in to comment.