Fixed ImportErrors / package structure

This commit is contained in:
shin- 2013-10-23 20:03:04 +02:00
parent 8be4c1f0d3
commit e56bc51fe2
3 changed files with 4 additions and 6 deletions

View File

@ -1,5 +1,3 @@
from .auth import (
INDEX_URL,
encode_header,

View File

@ -1 +1 @@
from .utils import mkbuildcontext, tar, compare_version # flake8: noqa
from .utils import compare_version, mkbuildcontext, ping, tar # flake8: noqa

View File

@ -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'
],
)
],
)