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.learn.boosting
Commits
4f035d6d
Commit
4f035d6d
authored
Nov 19, 2015
by
Pavel KORSHUNOV
Browse files
pkg_resources is replaces with pkgutil
parent
2dcd5ac9
Changes
3
Hide whitespace changes
Inline
Side-by-side
bob/__init__.py
View file @
4f035d6d
#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/learn/__init__.py
View file @
4f035d6d
#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 @
4f035d6d
...
...
@@ -66,10 +66,7 @@ setup(
install_requires
=
build_requires
,
# Declare that the package is in the namespace bob.learn
namespace_packages
=
[
'bob'
,
'bob.learn'
],
ext_modules
=
[
Extension
(
"bob.learn.boosting.version"
,
...
...
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