Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add autodoxy, a sphinx extension heavily inspired from autodoc_doxygen
authorMartin Quinson <martin.quinson@ens-rennes.fr>
Tue, 5 Nov 2019 15:12:02 +0000 (16:12 +0100)
committerMartin Quinson <martin.quinson@ens-rennes.fr>
Sun, 10 Nov 2019 18:09:06 +0000 (19:09 +0100)
commit704e6bf842c07a5762c2494015c2e8e25f230e6f
tree3ee2025976a01d1271c5876c775ce31d6c084a18
parentf9ffcc74e4fc1ae9954e60b1e2dba972de07a487
Add autodoxy, a sphinx extension heavily inspired from autodoc_doxygen

This version is really really close to the now abandonned
https://github.com/rmcgibbo/sphinxcontrib-autodoc_doxygen
but I plan to improve it in the next commits.

The only difference to the original code is what is needed to make it
compile here (change imports, add a new setup.py, don't name the
template as '*.rst' since sphinx spits an error on them) plus the
rename autodoc_doxygen -> autodoxy.

Used version:
https://github.com/rmcgibbo/sphinxcontrib-autodoc_doxygen/commit/ad70f62805affdeb0e6cc638344c15a213394e0d
docs/source/_ext/autodoxy/README [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/__init__.py [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/autodoxy.py [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/autosummary/__init__.py [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/autosummary/generate.py [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/autosummary/templates/doxyclass.rst.in [new file with mode: 0644]
docs/source/_ext/autodoxy/autodoxy/xmlutils.py [new file with mode: 0644]
docs/source/_ext/autodoxy/setup.py [new file with mode: 0644]
docs/source/conf.py