src/source/conf.py
changeset 53 05a4f2c07b84
parent 50 6ed429390935
child 55 949d496c4e96
--- a/src/source/conf.py	Thu Apr 12 11:18:48 2018 +0200
+++ b/src/source/conf.py	Fri Apr 27 14:44:33 2018 +0200
@@ -69,10 +69,13 @@
 extensions = [
     'sphinx.ext.autodoc',
     'sphinx.ext.todo',
-    'sphinx.ext.coverage',
-    'sphinx.ext.viewcode'
+    #'sphinx.ext.coverage',
+    'sphinx.ext.viewcode',
+    'repoze.sphinx.autointerface',
 ]
 
+autoclass_content = 'both'
+
 # Add any paths that contain templates here, relative to this directory.
 templates_path = ['_templates']
 
@@ -235,3 +238,8 @@
         else:
             return super(self.__class__, self).__doc__
     FieldProperty.__doc__ = property(get_field_doc)
+
+
+def setup(app):
+    app.add_stylesheet('css/custom.css')
+