Skip to content

Commit

Permalink
make sure that kubernetes.stream module gets installed
Browse files Browse the repository at this point in the history
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 kubernetes-client#355
  • Loading branch information
larsks committed Oct 6, 2017
1 parent dbb0908 commit ccf288c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
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/
Expand Down

0 comments on commit ccf288c

Please sign in to comment.