-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* adding pydocstyle to pyproject.toml * adding mesa_frames __init__ docstring * adding mesa_frames/abstract __init__ docstring * fixing mesa_frames/abstract/agents.py for ruff.pydocstyle * fixing mesa_frames/abstract/mixin.py for ruff.pydocstyle * fixing mesa_frames/abstract/space.py for ruff.pydocstyle * adding __init__ to mesa_frames/concrete * fixing arguments in __init__ of the module * fixing mesa_frames/concrete/model.py for ruff.pydocstyle * fixing mesa_frames/concrete/agents.py for ruff.pydocstyle * fixing mesa_frames/concrete/pandas/agentset.py for ruff.pydocstyle * adding __init__ to mesa_frames/concrete/pandas * fixing mesa_frames/concrete/pandas/mixin.py for ruff.pydocstyle * removing methods section (hard to mantain, and automatically generated by sphinx) * removing properties (sphinx will generate that) * moving parameters to __init__ * fixing mesa_frames/concrete/pandas/space.py * adding __init__ to mesa_frames/concrete/polars * removing docstring (sphinx will autogenerate from AgentSetDF) * removing docstring (sphinx will autogenerate from GridDF) * removing docstring (sphinx will autogenerate from DFMixin) * deactivate D101 and D102 (too many errors due to inheritance) * deactivating d105 (doesn't work well with inheritance) * fixing mesa_frames/concrete/polars/agentset.py for ruff.pydocstyle * fixing mesa_frames/concrete/polars/mixin.py for ruff.pydocstyle * fixing mesa_frames/concrete/polars/space.py * ignoring in tests, examples or docs * test -> tests * adding __init__ to type aliases * removing commented test * test fix * adding sphinx dependencies * quick starting sphinx * updating dependencies for docs * adding required dependencies * configuring api documentation * creating docs structure * copying description from parent class for abstract classes * renaming docs action to mkdocs * changing requirements to mkdocs_requirements.txt * moving mkdocs to docs/general * unique gh action for deployment * adding sphinx files to docs/api * fix: checkout = false (checked out before) * fix: unique gh pages actions * fix: removed api from docs * rename for clarity * removed redundant/useless requirements * moving to /reference for clarity (similar to polars) * fix: update reqs * adding section headers * removing properties (automatically generated by sphinx) * Revert "adding section headers" This reverts commit fa1b20d. * adding title * adding description for backend specific classes (better for sphinx) * run only 72-api-documentation-with-sphinx * changing branch to main
- Loading branch information
1 parent
158a121
commit c8a11fe
Showing
23 changed files
with
300 additions
and
68 deletions.
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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.