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 (
|
||||
INDEX_URL,
|
||||
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",
|
||||
version='0.2.1',
|
||||
description="Python client for Docker.",
|
||||
packages=['docker'],
|
||||
packages=['docker', 'docker.auth', 'docker.unixconn', 'docker.utils'],
|
||||
install_requires=requirements + test_requirements,
|
||||
zip_safe=False,
|
||||
test_suite='tests',
|
||||
|
@ -24,5 +24,5 @@ setup(
|
|||
'Programming Language :: Python',
|
||||
'Topic :: Utilities',
|
||||
'License :: OSI Approved :: Apache Software License'
|
||||
],
|
||||
)
|
||||
],
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue