add pytests

This commit is contained in:
Jared Dillard
2025-05-16 01:17:29 -07:00
parent 19f42aa8cc
commit 012674a934
10 changed files with 297 additions and 4 deletions
+22
View File
@@ -0,0 +1,22 @@
"""Configuration file for the basic Sphinx project."""
project = "Test Project"
copyright = "2025, Test"
author = "Test"
extensions = [
"sphinx_llms_txt",
]
templates_path = ["_templates"]
exclude_patterns = ["_build", "Thumbs.db", ".DS_Store"]
html_theme = "alabaster"
html_static_path = ["_static"]
# Configuration for sphinx-llms-txt
llms_txt_filename = "test-llms-full.txt"
llms_txt_verbose = True
# Master document
master_doc = "index"