I am using setuptools to build my sphinx documentation of a python project (python setup.py build_sphinx).
python setup.py build_sphinx
As found on, e.g., this site, I have configured t
In recent versions of Sphinx, you do this by adding an additional option to the section in setup.cfg:
setup.cfg
[build_sphinx] all-files = 1 source-dir = docs/source build-dir = docs/build warning-is-error = 1
Support for this was added in Sphinx 1.5, thus, this will not work with older versions.