mirror of https://github.com/docker/docker-py.git
Fixed ImportErrors / package structure
This commit is contained in:
parent
8be4c1f0d3
commit
e56bc51fe2
|
@ -1,5 +1,3 @@
|
||||||
|
|
||||||
|
|
||||||
from .auth import (
|
from .auth import (
|
||||||
INDEX_URL,
|
INDEX_URL,
|
||||||
encode_header,
|
encode_header,
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
from .utils import mkbuildcontext, tar, compare_version # flake8: noqa
|
from .utils import compare_version, mkbuildcontext, ping, tar # flake8: noqa
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -13,7 +13,7 @@ setup(
|
||||||
name="docker-py",
|
name="docker-py",
|
||||||
version='0.2.1',
|
version='0.2.1',
|
||||||
description="Python client for Docker.",
|
description="Python client for Docker.",
|
||||||
packages=['docker'],
|
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
||||||
install_requires=requirements + test_requirements,
|
install_requires=requirements + test_requirements,
|
||||||
zip_safe=False,
|
zip_safe=False,
|
||||||
test_suite='tests',
|
test_suite='tests',
|
||||||
|
@ -24,5 +24,5 @@ setup(
|
||||||
'Programming Language :: Python',
|
'Programming Language :: Python',
|
||||||
'Topic :: Utilities',
|
'Topic :: Utilities',
|
||||||
'License :: OSI Approved :: Apache Software License'
|
'License :: OSI Approved :: Apache Software License'
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue