is this ok?

This commit is contained in:
liris 2014-04-30 12:15:55 +09:00
parent 7e80458932
commit 4df5215e62

@ -5,10 +5,14 @@ VERSION = "0.14.0"
install_requires = ["six"]
if sys.version_info.major == 2:
name="websocket-client"
install_requires.append('backports.ssl_match_hostname')
else:
# for backword compatible.
name="websocket-client-py3"
setup(
name="websocket-client",
name=name,
version=VERSION,
description="WebSocket client for python. hybi13 is supported.",
long_description=open("README.rst").read(),