From dd33336a15701f938de285edaabc4bc7d87d6ca2 Mon Sep 17 00:00:00 2001 From: Martin Ferianc Date: Mon, 12 Feb 2024 13:15:31 +0100 Subject: [PATCH] [0.0.1] Fix doc generation --- README.rst | 2 ++ docs/conf.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.rst b/README.rst index 66283f5..545da36 100644 --- a/README.rst +++ b/README.rst @@ -23,6 +23,8 @@ You can find the YAMLE repository on GitHub: `YAMLE Repository `_ +You can find the documentation at: `yamle.readthedocs.io `_ + Table of Contents ----------------- diff --git a/docs/conf.py b/docs/conf.py index 2efacc7..f4debfa 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ def run_apidoc(app): """Generate doc stubs using sphinx-apidoc.""" module_dir = os.path.join(app.srcdir, "../") output_dir = os.path.join(app.srcdir, "_apidoc") - excludes = [] + excludes = ["../setup.py"] # Ensure that any stale apidoc files are cleaned up first. if os.path.exists(output_dir):