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

pkg_resources is replaces with pkgutil

parent 64ad2ef3
No related branches found
No related tags found
No related merge requests found
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages # see https://docs.python.org/3/library/pkgutil.html
__import__('pkg_resources').declare_namespace(__name__) from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
#see http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages # see https://docs.python.org/3/library/pkgutil.html
__import__('pkg_resources').declare_namespace(__name__) from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
...@@ -39,10 +39,7 @@ setup( ...@@ -39,10 +39,7 @@ setup(
setup_requires = build_requires, setup_requires = build_requires,
install_requires = build_requires, install_requires = build_requires,
namespace_packages=[
"bob",
"bob.ip",
],
ext_modules=[ ext_modules=[
Extension("bob.ip.flandmark.version", Extension("bob.ip.flandmark.version",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment