Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,18 @@
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"myst_nb",
"sphinx_llms_txt",
"sphinx_sitemap",
"docs.data_adapters_extension",
]

# sphinx-llms-txt configuration
llms_txt_title = "Apache Hamilton"
llms_txt_summary = (
"Apache Hamilton is a lightweight Python framework for creating "
"DAGs of data transformations using declarative function definitions."
)

nb_execution_mode = "off"

# this is required to get simplepdf to work
Expand Down
17 changes: 9 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -131,8 +131,8 @@ test = [
]
docs = [
{include-group = "dev"},
"alabaster>=0.7,<0.8,!=0.7.5", # read the docs pins
"commonmark==0.9.1", # read the docs pins
"alabaster",
"commonmark",
"dask-expr>=1.1.14",
"dask[distributed]",
"ddtrace<3.0",
Expand All @@ -146,7 +146,7 @@ docs = [
"lxml",
"lz4",
"mlflow",
"mock==1.0.1", # read the docs pins
"mock",
"myst-nb",
"narwhals",
"numpy",
Expand All @@ -159,14 +159,15 @@ docs = [
"pyspark",
"openlineage-python",
"PyYAML",
"ray",
"readthedocs-sphinx-ext<2.3", # read the docs pins
"recommonmark==0.5.0", # read the docs pins
"ray; python_version < '3.14'",
"readthedocs-sphinx-ext",
"recommonmark",
"scikit-learn",
"slack-sdk",
"sphinx", # unpinned because myst-parser doesn't break anymore
"sphinx",
"sphinx-autobuild",
"sphinx-rtd-theme", # read the docs pins
"sphinx-llms-txt",
"sphinx-rtd-theme",
"sphinx-simplepdf",
"sphinx-sitemap",
"tqdm",
Expand Down
Loading