use furo docs theme instead of alabaster

This commit is contained in:
Lance Edgar 2024-07-01 11:09:44 -05:00
parent 43a6c56844
commit 4588fb8179
2 changed files with 7 additions and 3 deletions

View file

@ -17,12 +17,14 @@
# -- Project information ----------------------------------------------------- # -- Project information -----------------------------------------------------
from importlib.metadata import version as get_version
project = 'rattail-tutorial' project = 'rattail-tutorial'
copyright = '2019, Lance Edgar' copyright = '2019-2024, Lance Edgar'
author = 'Lance Edgar' author = 'Lance Edgar'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = '0.1' release = get_version('rattail-tutorial')
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
@ -51,7 +53,7 @@ todo_include_todos = True
# The theme to use for HTML and HTML Help pages. See the documentation for # The theme to use for HTML and HTML Help pages. See the documentation for
# a list of builtin themes. # a list of builtin themes.
# #
html_theme = 'alabaster' html_theme = 'furo'
# Add any paths that contain custom static files (such as style sheets) here, # 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, # relative to this directory. They are copied after the builtin static files,

View file

@ -24,9 +24,11 @@ classifiers = [
"Topic :: Office/Business", "Topic :: Office/Business",
] ]
dependencies = [ dependencies = [
"furo",
"invoke", "invoke",
"psycopg2", "psycopg2",
"rattail[auth,db,bouncer]", "rattail[auth,db,bouncer]",
"Sphinx",
"Tailbone", "Tailbone",
"tox", "tox",
] ]