# HG changeset patch # User Andy Todd # Date 1678323229 -39600 # Thu Mar 09 11:53:49 2023 +1100 # Node ID d473fb78d437539fb7cd63ad93cf963a300ac381 # Parent 3e94588dbf58004f0dcbd3e21aa693f154eabc2a Fixed the requirements.txt, set the language and tweaked the documentation using the right theme this time. diff --git a/docs/source/conf.py b/docs/source/conf.py --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -70,7 +70,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = 'en' # There are two options for replacing |today|: either, you set today to some # non-false value, then it is used: @@ -115,7 +115,7 @@ # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'classic' +html_theme = 'sphinx_rtd_theme' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the diff --git a/docs/source/index.rst b/docs/source/index.rst --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -5,6 +5,10 @@ way to produce good looking log messages from your Python script or application. +This documentation lives at https://halfcooked.com/code/simple_log + +The source code and the project issue tracker are at https://sr.ht/~andy47/simple_log/ + Contents: .. toctree:: diff --git a/requirements.txt b/requirements.txt --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,4 @@ # Dev/Deployment -# sphinx -# sphinx_rtd_theme -# pytest -# coverage -# pypi-publisher \ No newline at end of file +sphinx +sphinx_rtd_theme +pytest \ No newline at end of file