Skip to content
Snippets Groups Projects
Commit 1f5c3f16 authored by Pavel KORSHUNOV's avatar Pavel KORSHUNOV
Browse files

pkg_resources is replaces with pkgutil

parent 47219643
Branches
Tags
No related merge requests found
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__('pkg_resources').declare_namespace(__name__)
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__('pkg_resources').declare_namespace(__name__)
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
__import__('pkg_resources').declare_namespace(__name__)
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
......@@ -31,11 +31,7 @@ setup(
include_package_data=True,
zip_safe=False,
namespace_packages=[
"bob",
"bob.ip",
"bob.ip.optflow",
],
setup_requires = build_requires,
install_requires = build_requires,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment