Sphinx mocking autodoc extension
Project description
Mock imports for build docs without install packages in environment.
This extension add :mockimport: and :mocktype: for standard automodule derictive from autodoc.
Main goal of extension is to solve task defined on question.
Install
pip install sphinxcontrib-mockautodoc
Usage
Add mockautodoc to extensions list:
extenstion = ['sphinx.ext.autodoc', 'sphinxcontrib.mockautodoc', ]
The extension add two options to standard automodule:
:mockimport: list of name spaces to mock separated by ‘,’.
- :mocktype: list of objects which must be mock as type object
for right way subclass them in sources, separated by ‘,’.
If you have module for documenting:
from twisted.internet import protocol, defer @defer.inlineCallbacks def my_func(): """my function""" pass class MyProtocol(protocol.Protocol): """my protocol""" pass
And twisted not installed you can document module like that:
.. automodule:: package :mockimport: twisted :mocktype: protocol.Protocol
Where on :mockimport: will be mocked all twisted.* imports in automodule building context. And :mocktype: means which instances must be object types to successful subclass them without loss target documentation.
mockatudoc settings may be defined on conf.py and all automodule directives with present :mockimport: will be mocked. Where data on mockatodoc settings will be summed with :mockimport: and :mocktype: options:
mockautodoc = { 'mockimport': ['twisted',], 'mocktype': ['protocol.Protocol'], }
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file sphinxcontrib-mockautodoc-0.0.1dev-20130518.tar.gz
.
File metadata
- Download URL: sphinxcontrib-mockautodoc-0.0.1dev-20130518.tar.gz
- Upload date:
- Size: 7.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1822573183d1c70f3b2e846094586d8c195f6fc7d52e6286bc55f5c8694b2b98 |
|
MD5 | d715dff30c74a924b26b7228e6bfe53e |
|
BLAKE2b-256 | 56a359c4e10ab2b73b5127b8032fe65ca614bb82bdd16ffb2db94a01674a250d |