python - sphinx-doc documentation on readthedocs.org depends on private sphinxcontrib-package -


i host sphinx-doc website on readthedocs.org depends on private sphinx-doc extension/sphinxcontrib-package [extension_name]. on local pc extension located in subdirectory [sphinx-doc project root]/exts/sphinxcontrib-[extension name] , "referenced" in conf.py with

sys.path.append(os.path.abspath('exts/sphinxcontrib-<extension name>/sphinxcontrib'))  extensions = [     'sphinx.ext.graphviz',     '[extension name]' ] 

the .py file located in "source" directory sphinxcontrib. local sphinx-doc build output expected. build on readthedocs.org fails due an

importerror: no module named 'sphinxcontrib' ... extension error: not import extension sphinxcontrib.p3 (exception: no module named 'sphinxcontrib') 

as extension in beta phase not want distribute online. (if should able install readthedocs.org pre-build web source guess.) how can handle issue?


Comments

Popular posts from this blog

java - pagination of xlsx file to XSSFworkbook using apache POI -

Unlimited choices in BASH case statement -

apache - How do I stop my index.php being run twice for every user -