We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f832f51 commit 6497018Copy full SHA for 6497018
docs/conf.py
@@ -0,0 +1,15 @@
1
+import os
2
+import sys
3
+
4
+sys.path.insert(0, os.path.abspath('../../../'))
5
+sys.path.insert(0, os.path.abspath('..'))
6
7
+extensions = [
8
+ 'sphinx.ext.autodoc', # To generate autodocs
9
+ 'sphinx.ext.mathjax', # autodoc with maths
10
+ 'sphinx.ext.napoleon' # For auto-doc configuration
11
+]
12
13
+napoleon_google_docstring = False # Turn off googledoc strings
14
+napoleon_numpy_docstring = True # Turn on numpydoc strings
15
+napoleon_use_ivar = True # For maths symbology
0 commit comments