diff --git a/docs/source/conf.py b/docs/source/conf.py index 4157b5e..e02fea3 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -30,7 +30,15 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. -extensions = [] +extensions = [ + 'sphinx.ext.doctest', + 'sphinx.ext.todo', + 'sphinx.ext.coverage', + 'sphinx.ext.mathjax', + 'sphinx.ext.ifconfig', + 'sphinx.ext.viewcode', + 'sphinx.ext.githubpages' +] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] @@ -54,9 +62,9 @@ author = u'Recep Aslantas' # built documents. # # The short X.Y version. -version = u'0.2.1' +version = u'0.3.3' # The full version, including alpha/beta/rc tags. -release = u'0.2.1' +release = u'0.3.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -161,3 +169,31 @@ texinfo_documents = [ author, 'cglm', 'One line description of project.', 'Miscellaneous'), ] + +# -- Options for Epub output ------------------------------------------------- + +# Bibliographic Dublin Core info. +epub_title = project +epub_author = author +epub_publisher = author +epub_copyright = copyright + +# The unique identifier of the text. This can be a ISBN number +# or the project homepage. +# +# epub_identifier = '' + +# A unique identification for the text. +# +# epub_uid = '' + +# A list of files that should not be packed into the epub file. +epub_exclude_files = ['search.html'] + + +# -- Extension configuration ------------------------------------------------- + +# -- Options for todo extension ---------------------------------------------- + +# If true, `todo` and `todoList` produce output, else they produce nothing. +todo_include_todos = True