You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
############################
# Package would be ignored #
############################
Python recognizes 'mslib.mswms.xml_templates' as an importable package,
but it is not listed in the `packages` configuration of setuptools.
'mslib.mswms.xml_templates' has been automatically added to the distribution only
because it may contain data files, but this behavior is likely to change
in future versions of setuptools (and therefore is considered deprecated).
Please make sure that 'mslib.mswms.xml_templates' is included as a package by using
the `packages` configuration field or the proper discovery methods
(for example by using `find_namespace_packages(...)`/`find_namespace:`
instead of `find_packages(...)`/`find:`).
You can read more about "package discovery" and "data files" on setuptools
documentation page.
similiar for
mslib.mscolab.migrations
mslib.mscolab.migrations.versions
mslib.static.docs
mslib.static.img
mslib.static.templates
mslib.static.templates.user
mslib.msui.resources
mslib.msui.icons.config_editor
and various _tests dir which we moved already in develop
The text was updated successfully, but these errors were encountered:
The issue is a combination of not having __init__.py in each directory and using find_packages instead of find_namespace_packages. Switching to find_namespace_packages should fix this.
similiar for
and various _tests dir which we moved already in develop
The text was updated successfully, but these errors were encountered: