Skip to content
Snippets Groups Projects
Commit c6fd7298 authored by jkerdreu's avatar jkerdreu
Browse files

Fix namespace issue

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/trunk@2057 b32b6428-25c9-4566-ad07-03861ab6144f
parent 57751b94
Branches
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@ setup(
keywords=['xaal', 'influxdb'],
platforms='any',
packages=find_packages(),
namespace_packages=["xaal"],
include_package_data=True,
install_requires=[
'xaal.lib',
......
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment