diff options
| author | engn33r <engn33r@users.noreply.github.com> | 2021-03-03 22:58:49 -0500 |
|---|---|---|
| committer | engn33r <engn33r@users.noreply.github.com> | 2021-03-03 22:58:49 -0500 |
| commit | c36efd01cd408c0cfe909e8ab2927083e401cef2 (patch) | |
| tree | 4f9b703344d6a8a4ba0da336c9be7a31c258d237 | |
| parent | bf1b7675c842e2a7a8ea4167216d16b18fee7f56 (diff) | |
| download | websocket-client-c36efd01cd408c0cfe909e8ab2927083e401cef2.tar.gz | |
Fix #482
| -rw-r--r-- | setup.py | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -28,7 +28,6 @@ from setuptools import setup import pkg_resources VERSION = "0.58.0" -NAME = "websocket_client" install_requires = ["six"] tests_require = [] @@ -60,7 +59,7 @@ except Exception: install_requires.extend(value) setup( - name=NAME, + name="websocket-client", version=VERSION, description="WebSocket client for Python with low level API options", long_description=open("README.md").read(), |
