Extend sphinx to include icontracts.
Project description
sphinx-icontract
Sphinx-icontract extends Sphinx to include icontracts of classes and functions in the documentation.
Usage
Sphinx-icontract is based on the sphinx.ext.autodoc module. You need to specify both modules in extensions of your Sphinx configuration file (conf.py).
Here is an example excerpt:
# Add any Sphinx extension module names here, as strings. They can be
# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
# ones.
extensions = [
'sphinx.ext.autodoc',
'sphinx_icontract'
]
Implications
Sphinx-icontract tries to infer the implications from the conditions and render them as implication (... ⇒ ...). We implemented a rule-based matching that covers most of the practical use cases:
not A or B is translated to A ⇒ B.
Expressions are negated, so x < y or B is translated to x >= y ⇒ B. More general expressions are negated with not: from x.y() or B to not x.y() ⇒ B.
If-Expressions are translated from B if A else True to A ⇒ B.
We found implications in form of if-expressions to be confusing when read in source code and encourage programmers to use disjunction form instead.
Custom Errors
If you specify custom errors in the contract, sphinx-icontract will try to include the error in the documentation.
The error type will be inferred from the contract’s error argument. If the error message is given as a string literal and there is no contract description, the error message will be used to describe the contract so that you do not have to specify the description twice (once in the description of the contract and once in the error message).
For example:
@icontract.require(
lambda x: x > 0,
error=lambda: ValueError("x positive"))
def some_func(x: int) -> None:
pass
will be documented as:
:requires:
* :code:`x > 0` (x positive; raise :py:class:`ValueError`)
If both the description and the error message are given, only the description will be included:
@icontract.require(
lambda x: x > 0,
description="x must be positive",
error=lambda: ValueError("x positive"))
def some_func(x: int) -> None:
pass
will be rendered as:
:requires:
* :code:`x > 0` (x must be positive; raise :py:class:`ValueError`)
Installation
Install sphinx-icontract with pip:
pip3 install sphinx-icontract
Development
Check out the repository.
In the repository root, create the virtual environment:
python3 -m venv venv3
Activate the virtual environment:
source venv3/bin/activate
Install the development dependencies:
pip3 install -e .[dev]
We use tox for testing and packaging the distribution:
tox
Pre-commit Checks
We provide a set of pre-commit checks that lint and check code for formatting.
Namely, we use:
yapf to check the formatting.
The style of the docstrings is checked with pydocstyle.
Static type analysis is performed with mypy.
Various linter checks are done with pylint.
Contracts are linted with pyicontract-lint.
Doctests are executed using the Python doctest module.
Run the pre-commit checks locally from an activated virtual environment with development dependencies:
./precommit.py
The pre-commit script can also automatically format the code:
./precommit.py --overwrite
Versioning
We follow Semantic Versioning. The version X.Y.Z indicates:
X is the major version (backward-incompatible),
Y is the minor version (backward-compatible), and
Z is the patch version (backward-compatible bug fix).
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 sphinx-icontract-2.0.3.tar.gz
.
File metadata
- Download URL: sphinx-icontract-2.0.3.tar.gz
- Upload date:
- Size: 12.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/47.1.0 requests-toolbelt/0.9.1 tqdm/4.50.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5b367c92e05934a75a40cd2e9a08e34ecaab9b9b2b8c0c28bff5913c1337df78 |
|
MD5 | b220a8574983d42b5fec46e629b3f7e4 |
|
BLAKE2b-256 | 1d2f909e39b10c4d27a08085801c7f0a70e1b4bc51262ca348942f7bdce2d885 |