Commit a7a314e 1 parent b04c96b commit a7a314e Copy full SHA for a7a314e
File tree 3 files changed +17
-1
lines changed
3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change
1
+ API Reference
2
+ =============
3
+
4
+ .. automodule :: pandalchemy.methods
5
+ :members:
6
+ :undoc-members:
7
+ :show-inheritance:
Original file line number Diff line number Diff line change 6
6
# -- Project information -----------------------------------------------------
7
7
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
8
8
9
+ import os
10
+ import sys
11
+ sys .path .insert (0 , os .path .abspath ('..' ))
12
+
9
13
project = 'pandalchemy'
10
14
copyright = '2024, Essi Parent'
11
15
author = 'Essi Parent'
14
18
# -- General configuration ---------------------------------------------------
15
19
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
16
20
17
- extensions = []
21
+ extensions = [
22
+ 'sphinx.ext.autodoc' ,
23
+ 'nbsphinx'
24
+ ]
18
25
19
26
templates_path = ['_templates' ]
20
27
exclude_patterns = ['_build' , 'Thumbs.db' , '.DS_Store' ]
Original file line number Diff line number Diff line change @@ -15,3 +15,5 @@ documentation for details.
15
15
:maxdepth: 2
16
16
:caption: Contents:
17
17
18
+ api
19
+ examples/basic-usage
You can’t perform that action at this time.
0 commit comments