Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/_templates/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{% extends "!footer.html" %}

{% block extrafooter %}
{{ super() }}
{% if maintainer %}
<p class="maintainer">
<strong>Maintained by:</strong> {{ maintainer }}
</p>
{% endif %}
{% endblock %}
5 changes: 5 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
project = "agentlib_mpc"
copyright = "2021, AGENT-Project Associates"
author = "AGENT-Project Associates"
maintainer = "Institute for Energy Efficient Buildings and Indoor Climate, RWTH Aachen University"

# The full version, including alpha/beta/rc tags
with open(Path(__file__).parents[2].joinpath(project, "__init__.py"), "r") as file:
Expand Down Expand Up @@ -112,6 +113,10 @@
"logo_icon": "&#xe869",
}

# Add the maintainer to the HTML context, as it is not a standard Sphinx variable
html_context = {
"maintainer": maintainer,
}

# Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ build-backend = "setuptools.build_meta"
[project]
name = "agentlib_mpc"
authors = [
{ name = "Associates of the AGENT project", email = "AGENT.Projekt@eonerc.rwth-aachen.de" }
{ name = "Associates of the AGENT project"}
]
maintainers = [
{ name = "Institute for Energy Efficient Buildings and Indoor Climate, RWTH Aachen University", email = "ebc-tools@eonerc.rwth-aachen.de" }
]
description = "Framework for development and execution of agents for control and simulation of energy systems."
readme = "README.md"
Expand Down