-
Notifications
You must be signed in to change notification settings - Fork 17
API Documentation with Sphinx #75
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
59 commits
Select commit
Hold shift + click to select a range
f2aca2e
adding pydocstyle to pyproject.toml
adamamer20 a1bbebd
adding mesa_frames __init__ docstring
adamamer20 85c702d
adding mesa_frames/abstract __init__ docstring
adamamer20 45b1dfd
fixing mesa_frames/abstract/agents.py for ruff.pydocstyle
adamamer20 91ee44b
fixing mesa_frames/abstract/mixin.py for ruff.pydocstyle
adamamer20 aff9b52
fixing mesa_frames/abstract/space.py for ruff.pydocstyle
adamamer20 c6c8896
adding __init__ to mesa_frames/concrete
adamamer20 ccf02fc
fixing arguments in __init__ of the module
adamamer20 31e5d67
fixing mesa_frames/concrete/model.py for ruff.pydocstyle
adamamer20 14d2482
fixing mesa_frames/concrete/agents.py for ruff.pydocstyle
adamamer20 43770d6
fixing mesa_frames/concrete/pandas/agentset.py for ruff.pydocstyle
adamamer20 55c6f91
adding __init__ to mesa_frames/concrete/pandas
adamamer20 b1850f5
fixing mesa_frames/concrete/pandas/mixin.py for ruff.pydocstyle
adamamer20 923caf3
removing methods section (hard to mantain, and automatically generate…
adamamer20 6c8af78
removing properties (sphinx will generate that)
adamamer20 3455d5d
moving parameters to __init__
adamamer20 3834e67
fixing mesa_frames/concrete/pandas/space.py
adamamer20 3f41bf2
adding __init__ to mesa_frames/concrete/polars
adamamer20 92e3dad
removing docstring (sphinx will autogenerate from AgentSetDF)
adamamer20 ae3cd15
removing docstring (sphinx will autogenerate from GridDF)
adamamer20 e904e01
removing docstring (sphinx will autogenerate from DFMixin)
adamamer20 283a996
deactivate D101 and D102 (too many errors due to inheritance)
adamamer20 d135d62
deactivating d105 (doesn't work well with inheritance)
adamamer20 09ca47f
fixing mesa_frames/concrete/polars/agentset.py for ruff.pydocstyle
adamamer20 1e32f46
fixing mesa_frames/concrete/polars/mixin.py for ruff.pydocstyle
adamamer20 ebfa347
fixing mesa_frames/concrete/polars/space.py
adamamer20 d1b2acf
ignoring in tests, examples or docs
adamamer20 e5af36b
test -> tests
adamamer20 d057c39
adding __init__ to type aliases
adamamer20 ce8aaf1
removing commented test
adamamer20 cf9cbe1
test fix
adamamer20 f082224
adding sphinx dependencies
adamamer20 6e4ee83
quick starting sphinx
adamamer20 8d1c100
updating dependencies for docs
adamamer20 d4c5094
adding required dependencies
adamamer20 51f4b38
configuring api documentation
adamamer20 9453a37
creating docs structure
adamamer20 4e1d0a8
copying description from parent class for abstract classes
adamamer20 ac8a74b
renaming docs action to mkdocs
adamamer20 55dbb89
changing requirements to mkdocs_requirements.txt
adamamer20 4b1ee16
moving mkdocs to docs/general
adamamer20 1401ad3
unique gh action for deployment
adamamer20 53bbede
adding sphinx files to docs/api
adamamer20 fae5822
fix: checkout = false (checked out before)
adamamer20 22d2c2f
fix: unique gh pages actions
adamamer20 d63902b
fix: removed api from docs
adamamer20 f8945d6
rename for clarity
adamamer20 58ebd14
removed redundant/useless requirements
adamamer20 9d6d450
moving to /reference for clarity (similar to polars)
adamamer20 dba7fd8
fix: update reqs
adamamer20 fa1b20d
adding section headers
adamamer20 61c9efa
removing properties (automatically generated by sphinx)
adamamer20 1fbbe6a
Revert "adding section headers"
adamamer20 e4dd017
adding title
adamamer20 2dae685
adding description for backend specific classes (better for sphinx)
adamamer20 f380206
Merge branch 'main' of https://github.com/adamamer20/mesa-frames into…
adamamer20 3b8f89a
run only 72-api-documentation-with-sphinx
adamamer20 0a8f864
Merge branch 'main' into 72-api-documentation-with-sphinx
adamamer20 8724b20
changing branch to main
adamamer20 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,19 +1,38 @@ | ||
| name: Publish docs via GitHub Pages | ||
| name: Build and Deploy Documentation | ||
|
|
||
| on: | ||
| push: | ||
| branches: | ||
| - main | ||
|
|
||
| jobs: | ||
| build: | ||
| name: Deploy docs | ||
| build-and-deploy-docs: | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout main | ||
| uses: actions/checkout@v2 | ||
| - uses: actions/checkout@v4 | ||
| with: | ||
| fetch-depth: 0 # Fetch all history for .git-restore-mtime to work correctly | ||
|
|
||
| - name: Set up Python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.x' | ||
|
|
||
| - name: Install dependencies | ||
| run: | | ||
| python -m pip install --upgrade pip | ||
| pip install .[docs] | ||
|
|
||
| - name: Build MkDocs site (general documentation) | ||
| run: mkdocs build --config-file mkdocs.yml --site-dir ./site | ||
|
|
||
| - name: Build Sphinx docs (api documentation) | ||
| run: | | ||
| sphinx-build -b html docs/api site/api | ||
|
|
||
| - name: Deploy docs | ||
| uses: mhausenblas/mkdocs-deploy-gh-pages@master | ||
| env: | ||
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
| REQUIREMENTS: docs/requirements.txt | ||
| - name: Deploy to GitHub Pages | ||
| uses: peaceiris/actions-gh-pages@v4 | ||
| with: | ||
| github_token: ${{ secrets.GITHUB_TOKEN }} | ||
| publish_dir: ./site | ||
| force_orphan: true | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| # Minimal makefile for Sphinx documentation | ||
| # | ||
|
|
||
| # You can set these variables from the command line, and also | ||
| # from the environment for the first two. | ||
| SPHINXOPTS ?= | ||
| SPHINXBUILD ?= sphinx-build | ||
| SOURCEDIR = source | ||
| BUILDDIR = build | ||
|
|
||
| # Put it first so that "make" without argument is like "make help". | ||
| help: | ||
| @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) | ||
|
|
||
| .PHONY: help Makefile | ||
|
|
||
| # Catch-all target: route all unknown targets to Sphinx using the new | ||
| # "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). | ||
| %: Makefile | ||
| @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,77 @@ | ||
| import os | ||
|
|
||
| # -- Path setup -------------------------------------------------------------- | ||
| # If extensions (or modules to document with autodoc) are in another directory, | ||
| # add these directories to sys.path here. | ||
| import sys | ||
| from pathlib import Path | ||
|
|
||
| sys.path.insert(0, str(Path("..").resolve())) | ||
|
|
||
| # -- Project information ----------------------------------------------------- | ||
| project = "mesa-frames" | ||
| author = "Adam Amer" | ||
| copyright = f"2023, {author}" | ||
|
|
||
| # -- General configuration --------------------------------------------------- | ||
| extensions = [ | ||
| "sphinx.ext.autodoc", | ||
| "sphinx.ext.autosummary", | ||
| "sphinx.ext.napoleon", | ||
| "sphinx.ext.viewcode", | ||
| "sphinx.ext.intersphinx", | ||
| "numpydoc", | ||
| "sphinx_copybutton", | ||
| "sphinx_design", | ||
| "autodocsumm", | ||
| ] | ||
|
|
||
| templates_path = ["_templates"] | ||
| exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"] | ||
|
|
||
| # -- Options for HTML output ------------------------------------------------- | ||
| html_theme = "pydata_sphinx_theme" | ||
| html_static_path = ["_static"] | ||
| html_show_sourcelink = False | ||
|
|
||
| # -- Extension settings ------------------------------------------------------ | ||
| # intersphinx mapping | ||
| intersphinx_mapping = { | ||
| "python": ("https://docs.python.org/3", None), | ||
| "numpy": ("https://numpy.org/doc/stable/", None), | ||
| "pandas": ("https://pandas.pydata.org/docs/", None), | ||
| "polars": ("https://pola-rs.github.io/polars/py-polars/html/", None), | ||
| } | ||
|
|
||
| # numpydoc settings | ||
| numpydoc_show_class_members = False | ||
|
|
||
| # Copybutton settings | ||
| copybutton_prompt_text = r">>> |\.\.\. " | ||
| copybutton_prompt_is_regexp = True | ||
|
|
||
| # -- Custom configurations --------------------------------------------------- | ||
| autoclass_content = "class" | ||
| autodoc_member_order = "bysource" | ||
| autodoc_default_options = {"special-members": True, "exclude-members": "__weakref__"} | ||
|
|
||
| # -- GitHub link and user guide settings ------------------------------------- | ||
| github_root = "https://github.com/adamamer20/mesa-frames" | ||
| web_root = "https://adamamer20.github.io/mesa-frames" | ||
|
|
||
| html_theme_options = { | ||
| "external_links": [ | ||
| { | ||
| "name": "User guide", | ||
| "url": f"{web_root}/user-guide/", | ||
| }, | ||
| ], | ||
| "icon_links": [ | ||
| { | ||
| "name": "GitHub", | ||
| "url": github_root, | ||
| "icon": "fa-brands fa-github", | ||
| }, | ||
| ], | ||
| "navbar_end": ["navbar-icon-links"], | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| mesa-frames API | ||
| =============== | ||
|
|
||
| This page provides a high-level overview of all public mesa-frames objects, functions, and methods. All classes and functions exposed in the ``mesa_frames.*`` namespace are public. | ||
|
|
||
| .. grid:: | ||
|
|
||
| .. grid-item-card:: | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| reference/agents/index | ||
|
|
||
| .. grid-item-card:: | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 1 | ||
|
|
||
| reference/model | ||
|
|
||
| .. grid-item-card:: | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 3 | ||
|
|
||
| reference/space/index |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,35 @@ | ||
| @ECHO OFF | ||
|
|
||
| pushd %~dp0 | ||
|
|
||
| REM Command file for Sphinx documentation | ||
|
|
||
| if "%SPHINXBUILD%" == "" ( | ||
| set SPHINXBUILD=sphinx-build | ||
| ) | ||
| set SOURCEDIR=source | ||
| set BUILDDIR=build | ||
|
|
||
| %SPHINXBUILD% >NUL 2>NUL | ||
| if errorlevel 9009 ( | ||
| echo. | ||
| echo.The 'sphinx-build' command was not found. Make sure you have Sphinx | ||
| echo.installed, then set the SPHINXBUILD environment variable to point | ||
| echo.to the full path of the 'sphinx-build' executable. Alternatively you | ||
| echo.may add the Sphinx directory to PATH. | ||
| echo. | ||
| echo.If you don't have Sphinx installed, grab it from | ||
| echo.https://www.sphinx-doc.org/ | ||
| exit /b 1 | ||
| ) | ||
|
|
||
| if "%1" == "" goto help | ||
|
|
||
| %SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% | ||
| goto end | ||
|
|
||
| :help | ||
| %SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% | ||
|
|
||
| :end | ||
| popd |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
| AgentSetDF | ||
| ========== | ||
|
|
||
| .. currentmodule:: mesa_frames | ||
|
|
||
| .. autoclass:: AgentSetPandas | ||
| :members: | ||
| :inherited-members: | ||
| :autosummary: | ||
| :autosummary-nosignatures: | ||
|
|
||
| .. autoclass:: AgentSetPolars | ||
| :members: | ||
| :inherited-members: | ||
| :autosummary: | ||
| :autosummary-nosignatures: | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| ModelDF | ||
| ======= | ||
|
|
||
| .. currentmodule:: mesa_frames | ||
|
|
||
| .. autoclass:: ModelDF | ||
| :members: | ||
| :inherited-members: | ||
| :autosummary: | ||
| :autosummary-nosignatures: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| GridDF | ||
| ====== | ||
|
|
||
| .. currentmodule:: mesa_frames | ||
|
|
||
| .. autoclass:: GridPandas | ||
| :members: | ||
| :inherited-members: | ||
| :autosummary: | ||
| :autosummary-nosignatures: | ||
|
|
||
| .. autoclass:: GridPolars | ||
| :members: | ||
| :inherited-members: | ||
| :autosummary: | ||
| :autosummary-nosignatures: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| Space | ||
| ===== | ||
| This page provides a high-level overview of possible space objects for mesa-frames models. | ||
|
|
||
| .. toctree:: | ||
| :maxdepth: 2 | ||
|
|
||
| grid/index |
File renamed without changes.
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.