Skip to content

Commit

Permalink
Fixed sphinx conf
Browse files Browse the repository at this point in the history
  • Loading branch information
tfroehlich82 committed Feb 20, 2017
1 parent 1ed528f commit 3a6ea10
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions docs/conf.py
Expand Up @@ -17,10 +17,13 @@
# 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('.'))

sys.path.insert(0, os.path.abspath('..'))
from django.conf import settings
settings.configure()

# -- General configuration ------------------------------------------------

Expand All @@ -31,9 +34,11 @@
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = ['sphinx.ext.autodoc',
extensions = [
'sphinx.ext.autodoc',
'sphinx.ext.doctest',
'sphinx.ext.coverage']
'sphinx.ext.coverage'
]

# Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
Expand All @@ -57,9 +62,9 @@
# built documents.
#
# The short X.Y version.
version = '1.0.0'
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.0.0'
release = '1.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down

0 comments on commit 3a6ea10

Please sign in to comment.