Metadata-Version: 2.4
Name: sphinx-autodoc-pytest-fixtures
Version: 0.0.1a7
Summary: Sphinx extension for documenting pytest fixtures as first-class objects
Project-URL: Repository, https://github.com/git-pull/gp-sphinx
Author-email: Tony Narlock <tony@git-pull.com>
License: MIT
Keywords: autodoc,documentation,fixtures,pytest,sphinx
Classifier: Development Status :: 3 - Alpha
Classifier: Framework :: Pytest
Classifier: Framework :: Sphinx
Classifier: Framework :: Sphinx :: Extension
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Documentation
Classifier: Topic :: Documentation :: Sphinx
Classifier: Topic :: Software Development :: Testing
Classifier: Typing :: Typed
Requires-Python: <4.0,>=3.10
Requires-Dist: pytest
Requires-Dist: sphinx
Requires-Dist: sphinx-autodoc-badges==0.0.1a7
Description-Content-Type: text/markdown

# sphinx-autodoc-pytest-fixtures

Sphinx extension that documents pytest fixtures as first-class domain objects
with scope badges, dependency tracking, reverse-dep graphs, and auto-generated
usage snippets.

## Install

```console
$ pip install sphinx-autodoc-pytest-fixtures
```

## Usage

```python
extensions = ["sphinx_autodoc_pytest_fixtures"]
```

Then document fixtures with:

```rst
.. autofixture:: myproject.conftest.my_fixture

.. autofixtures:: myproject.conftest

.. autofixture-index:: myproject.conftest

.. doc-pytest-plugin:: myproject.pytest_plugin
   :project: myproject
   :package: myproject
   :summary: Document your pytest plugin with generated install and fixture
      reference sections.
```

## Documentation

See the [full documentation](https://gp-sphinx.git-pull.com/packages/sphinx-autodoc-pytest-fixtures/) for
config values, directive options, and the badge demo.
