File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,22 @@ Core Module
10
10
:show-inheritance:
11
11
:private-members:
12
12
:special-members:
13
+ :imported-members:
13
14
14
15
Utility Modules
15
16
-------------
16
17
18
+ Interactive Utilities
19
+ ~~~~~~~~~~~~~~~~~~~
20
+
21
+ .. automodule :: wdoc.utils.interact
22
+ :members:
23
+ :undoc-members:
24
+ :show-inheritance:
25
+ :private-members:
26
+ :special-members:
27
+ :imported-members:
28
+
17
29
Miscellaneous Utilities
18
30
~~~~~~~~~~~~~~~~~~~~~~
19
31
@@ -23,6 +35,7 @@ Miscellaneous Utilities
23
35
:show-inheritance:
24
36
:private-members:
25
37
:special-members:
38
+ :imported-members:
26
39
27
40
Logger
28
41
~~~~~~
33
46
:show-inheritance:
34
47
:private-members:
35
48
:special-members:
49
+ :imported-members:
36
50
37
51
LLM Utilities
38
52
~~~~~~~~~~~~
@@ -43,3 +57,4 @@ LLM Utilities
43
57
:show-inheritance:
44
58
:private-members:
45
59
:special-members:
60
+ :imported-members:
Original file line number Diff line number Diff line change 8
8
9
9
import os
10
10
import sys
11
+
12
+ # Add the project root and extension directories to the Python path
11
13
sys .path .insert (0 , os .path .abspath ('_ext' ))
12
14
sys .path .insert (0 , os .path .abspath ('../..' ))
15
+ sys .path .insert (0 , os .path .abspath ('../../wdoc' ))
13
16
14
17
project = 'wdoc'
15
18
copyright = '2024, thiswillbeyourgithub'
36
39
'private-members' : True ,
37
40
'special-members' : True ,
38
41
'show-inheritance' : True ,
42
+ 'imported-members' : True ,
39
43
}
40
44
45
+ autodoc_member_order = 'bysource'
46
+ autodoc_typehints = 'description'
47
+ autodoc_preserve_defaults = True
48
+ autodoc_inherit_docstrings = True
49
+ autodoc_docstring_signature = True
50
+
41
51
# Napoleon settings
42
52
napoleon_google_docstring = True
43
53
napoleon_numpy_docstring = True
You can’t perform that action at this time.
0 commit comments