File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020
2121 - name : Install dependencies
2222 run : |
23- pip install sphinx sphinx-rtd-theme
24- pip install . # This installs your package so Sphinx can import it
25-
23+ python -m pip install --upgrade pip
24+ pip install sphinx sphinx-rtd-theme sphinx-autodoc-typehints
25+ if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+ pip install . # Install the local package to make it importable
27+
2628 - name : Build Sphinx Documentation
2729 run : |
2830 sphinx-build -b html docs/source docs/build/html
Original file line number Diff line number Diff line change @@ -15,3 +15,5 @@ documentation for details.
1515 :maxdepth: 2
1616 :caption: Contents:
1717
18+ modules
19+
Original file line number Diff line number Diff line change 1- netmap
2- ======
1+ API Reference
2+ =============
33
4- .. toctree ::
5- :maxdepth: 4
6-
7- netmap
4+ .. automodule :: netmap
5+ :members:
6+ :undoc-members:
7+ :show-inheritance:
You can’t perform that action at this time.
0 commit comments