Closed zurk closed 5 years ago
The problem is that there is no namespace_packages defined in setup(...) call in setup.py. It is easy to fix.
namespace_packages
setup(...)
setup.py
How to reproduse: install style-analyzer: pip3 install style-analyzer and run
style-analyzer
pip3 install style-analyzer
>>> import lookout.core >>> import lookout.style >>> import lookout.sdk Traceback (most recent call last): File "<stdin>", line 1, in <module> ModuleNotFoundError: No module named 'lookout.sdk'
but lookout-sdk, as well as lookout-sdk-ml, are installed as dependencies.
lookout-sdk
lookout-sdk-ml
The problem is that there is no
namespace_packages
defined insetup(...)
call insetup.py
. It is easy to fix.How to reproduse: install
style-analyzer
:pip3 install style-analyzer
and runbut
lookout-sdk
, as well aslookout-sdk-ml
, are installed as dependencies.