I'm trying to write my documentation for Greengrass V2 software using Sphinx. The problem is related to the use of semantic version specification for the modules of Greengrass and the build module of Sphinx (sphinx-build), which doesn't recognize the name of folders entirely and separate them by point.
For example, if I have a tree directory as follows:
-docs
-com.example
--1.0.0
---test.py
The build command in the terminal throws the following error:
WARNING: autodoc: failed to import module 'temp.temp' from module 'com'; the following exception was raised: No module named 'com'
I tried to look up the solution on the internet, but didn't find it.