rawpython / remi

Python REMote Interface library. Platform independent. In about 100 Kbytes, perfect for your diet.
Apache License 2.0
3.48k stars 401 forks source link

Doc: let remi package be discoverable by Sphinx #432

Closed Robin-Castellani closed 3 years ago

Robin-Castellani commented 3 years ago

Previously building the documentation using the makefile rose warnings: it was not able to import remi package. The problem was that the repository root folder was not in sys.path, thus it was not considered when remi.rst tried to import remi.

Now all modules are correctly imported and Sphinx documentation is correctly built and populated with docstrings.

Address Issue #429 .

dddomodossola commented 3 years ago

@Robin-Castellani Thank you a lot!