File tree Expand file tree Collapse file tree 3 files changed +49
-1
lines changed Expand file tree Collapse file tree 3 files changed +49
-1
lines changed Original file line number Diff line number Diff line change 1+ # .readthedocs.yaml
2+ # Read the Docs configuration file
3+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
4+
5+ version : 2
6+
7+ # Set the OS, Python version and other tools you might need
8+ build :
9+ os : ubuntu-22.04
10+ tools :
11+ python : " 3.11"
12+
13+ # Build documentation in the docs/ directory with Sphinx
14+ sphinx :
15+ configuration : docs/source/conf.py
16+
17+ # Optionally declare the Python requirements required to build your docs
18+ python :
19+ install :
20+ - method : pip
21+ path : .
22+ - requirements : docs/requirements.txt
Original file line number Diff line number Diff line change 4242 'sphinx.ext.autodoc' ,
4343 'sphinx.ext.viewcode' ,
4444 'sphinx.ext.todo' ,
45+ 'sphinx.ext.napoleon' ,
4546]
4647
48+ # Autodoc configuration
49+ autodoc_default_options = {
50+ 'members' : True ,
51+ 'member-order' : 'bysource' ,
52+ 'special-members' : '__init__' ,
53+ 'undoc-members' : True ,
54+ 'exclude-members' : '__weakref__'
55+ }
56+
57+ # Napoleon settings for Google/NumPy style docstrings
58+ napoleon_google_docstring = True
59+ napoleon_numpy_docstring = True
60+ napoleon_include_init_with_doc = True
61+ napoleon_include_private_with_doc = False
62+ napoleon_include_special_with_doc = True
63+ napoleon_use_admonition_for_examples = False
64+ napoleon_use_admonition_for_notes = False
65+ napoleon_use_admonition_for_references = False
66+ napoleon_use_ivar = False
67+ napoleon_use_param = True
68+ napoleon_use_rtype = True
69+ napoleon_preprocess_types = False
70+ napoleon_type_aliases = None
71+ napoleon_attr_annotations = True
72+
4773# Add any paths that contain templates here, relative to this directory.
4874templates_path = ['../_templates' ]
4975
Original file line number Diff line number Diff line change @@ -4,9 +4,9 @@ API Reference for pystackql
44StackQL Class
55-------------
66.. autoclass :: pystackql.StackQL
7- :noindex:
87 :members:
98 :undoc-members:
109 :show-inheritance:
10+ :special-members: __init__
1111
1212
You can’t perform that action at this time.
0 commit comments