Merge pull request #1259 from silviulica/master
Add a modified patch from craigcitro@ to handle namespace sharing.
This commit is contained in:
commit
cc775f7ac1
4 changed files with 14 additions and 2 deletions
|
@ -1 +1,4 @@
|
|||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
try:
|
||||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
except ImportError:
|
||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
||||
|
|
|
@ -31,3 +31,9 @@
|
|||
# Copyright 2007 Google Inc. All Rights Reserved.
|
||||
|
||||
__version__ = '3.0.0b2'
|
||||
|
||||
if __name__ != '__main__':
|
||||
try:
|
||||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
except ImportError:
|
||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
try:
|
||||
__import__('pkg_resources').declare_namespace(__name__)
|
||||
except ImportError:
|
||||
__path__ = __import__('pkgutil').extend_path(__path__, __name__)
|
|
@ -210,7 +210,6 @@ if __name__ == '__main__':
|
|||
"Programming Language :: Python :: 3.3",
|
||||
"Programming Language :: Python :: 3.4",
|
||||
],
|
||||
namespace_packages=['google'],
|
||||
packages=find_packages(
|
||||
exclude=[
|
||||
'import_test_package',
|
||||
|
|
Loading…
Add table
Reference in a new issue