In our framework, we developed a number of Python packages with a specific hierarchical name convention
etc.
In a package I want to check with deptry, these packages are imported as any other packages
import a.b.c
from a.b.d import func
but deptry complains about it:
DEP001 'a' imported but missing from the dependency definitions
DEP001 'a' imported but missing from the dependency definitions
That is true for a venv without dependencies of a package at hand installed.
In a venv with all dependencies installed, deptry scan is successful. However, if I add another package from the same namespace, say a.y.z and install in the venv but have no imports of it in the source code, deptry issues no complains about it.
Can it be sorted out with deptry configuration?