Is your feature request related to a problem? Please describe.
docspec-python does not currently load the contents of implicit namespace packages as it relies on a folder having an __init__.py file to recognize it as a package.
Describe the solution you'd like
Do not test for __init__.py, just load all .py files in a directory and assume an implicit namespace package if at least one module or another package, eventually also implicit, exists inside.
Is your feature request related to a problem? Please describe.
docspec-python
does not currently load the contents of implicit namespace packages as it relies on a folder having an__init__.py
file to recognize it as a package.Describe the solution you'd like
Do not test for
__init__.py
, just load all.py
files in a directory and assume an implicit namespace package if at least one module or another package, eventually also implicit, exists inside.