Skip to content
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

Update Sphinx theme #121

Merged
Merged
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
11 changes: 4 additions & 7 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
with open(version_path) as fp:
exec(fp.read(), version_dict)
version = version_dict["__version__"]
release = version_dict["__version__"]

extensions = [
"sphinx.ext.napoleon",
Expand All @@ -48,6 +49,7 @@
"IPython.sphinxext.ipython_console_highlighting",
"reno.sphinxext",
"nbsphinx",
"qiskit_sphinx_theme",
]
templates_path = ["_templates"]
numfig = True
Expand All @@ -72,10 +74,5 @@
nbsphinx_widgets_path = ""
exclude_patterns = ["_build", "**.ipynb_checkpoints"]

html_theme_options = {
"github_user": "qiskit-community",
"github_repo": "qiskit-braket-provider",
"github_button": True,
"github_type": "star",
"github_count": False,
}
html_theme = "qiskit-ecosystem"
html_title = f"{project} {release}"
5 changes: 5 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Qiskit-Braket provider documentation
####################################

.. toctree::
:hidden:

Home <self>

Qiskit-Braket provider to execute Qiskit programs on AWS quantum computing hardware devices through Amazon Braket.

API references
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ tox==3.24.5
jupyter-sphinx>=0.3.2
nbsphinx>=0.8.8
sphinx-autodoc-typehints>=1.17.0
qiskit_sphinx_theme~=1.16.0
reno>=3.5.0
# Black's formatting rules can change between major versions, so we use
# the ~= specifier for it.
Expand Down
Loading