├── .coveragerc ├── .github ├── dependabot.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── NEWS.rst ├── README.rst ├── pyproject.toml ├── pytest.ini ├── src └── sphinx_last_updated_by_git.py ├── tests ├── test_example_repo.py ├── test_singlehtml.py ├── test_untracked.py └── update_submodules.py └── uv.lock /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source=sphinx_last_updated_by_git 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include NEWS.rst 2 | -------------------------------------------------------------------------------- /NEWS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/NEWS.rst -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/README.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/pytest.ini -------------------------------------------------------------------------------- /src/sphinx_last_updated_by_git.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/src/sphinx_last_updated_by_git.py -------------------------------------------------------------------------------- /tests/test_example_repo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/tests/test_example_repo.py -------------------------------------------------------------------------------- /tests/test_singlehtml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/tests/test_singlehtml.py -------------------------------------------------------------------------------- /tests/test_untracked.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/tests/test_untracked.py -------------------------------------------------------------------------------- /tests/update_submodules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/tests/update_submodules.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mgeier/sphinx-last-updated-by-git/HEAD/uv.lock --------------------------------------------------------------------------------