I just noticed, that the type information of pystow is not shipped, because no py.typed file is present. See this mypy output I had in another project.
...
sylloge/base.py:28: error: Skipping analyzing "pystow": module is installed, but missing library stubs or py.typed marker [import-untyped]
sylloge/base.py:30: error: Skipping analyzing "pystow.utils": module is installed, but missing library stubs or py.typed marker [import-untyped]
....
I just noticed, that the type information of pystow is not shipped, because no
py.typed
file is present. See this mypy output I had in another project.This can be easily fixed, by adding a
py.typed
file insidesrc/pystow
.