make sure that kubernetes.stream module gets installed

Previously, installing the client using `python setup.py install`
would fail to install the `kubernetes.stream` module, leading to
errors when trying to `import kubernetes`.

Closes #355
This commit is contained in:
Lars Kellogg-Stedman 2017-10-06 17:06:10 -04:00 committed by Lars Kellogg-Stedman
parent dbb09089d3
commit ccf288c49a

View File

@ -46,7 +46,7 @@ setup(
tests_require=TESTS_REQUIRES,
packages=['kubernetes', 'kubernetes.client', 'kubernetes.config',
'kubernetes.watch', 'kubernetes.client.apis',
'kubernetes.client.models'],
'kubernetes.client.models', 'kubernetes.stream'],
include_package_data=True,
long_description="""\
Python client for kubernetes http://kubernetes.io/