diff --git a/docs/conf.py b/docs/conf.py index 50aaca2..eb80bf5 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -17,12 +17,14 @@ # -- Project information ----------------------------------------------------- +from importlib.metadata import version as get_version + project = 'rattail-tutorial' -copyright = '2019, Lance Edgar' +copyright = '2019-2024, Lance Edgar' author = 'Lance Edgar' # The full version, including alpha/beta/rc tags -release = '0.1' +release = get_version('rattail-tutorial') # -- General configuration --------------------------------------------------- @@ -51,7 +53,7 @@ todo_include_todos = True # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # -html_theme = 'alabaster' +html_theme = 'furo' # 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, diff --git a/pyproject.toml b/pyproject.toml index 7566730..f2524b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,9 +24,11 @@ classifiers = [ "Topic :: Office/Business", ] dependencies = [ + "furo", "invoke", "psycopg2", "rattail[auth,db,bouncer]", + "Sphinx", "Tailbone", "tox", ]