Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.db.atnt
Commits
3fae7600
Commit
3fae7600
authored
Nov 19, 2015
by
Pavel KORSHUNOV
Browse files
pkg_resources is replaces with pkgutil
parent
8019946c
Changes
3
Hide whitespace changes
Inline
Side-by-side
bob/__init__.py
View file @
3fae7600
#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__
)
bob/db/__init__.py
View file @
3fae7600
#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__
)
setup.py
View file @
3fae7600
...
...
@@ -31,10 +31,7 @@ setup(
install_requires
=
install_requires
,
namespace_packages
=
[
'bob'
,
'bob.db'
,
],
entry_points
=
{
# declare database to bob
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment