OLD | NEW |
(Empty) | |
| 1 from setuptools import setup |
| 2 |
| 3 VERSION = "0.7.0" |
| 4 |
| 5 |
| 6 setup( |
| 7 name="websocket-client", |
| 8 version=VERSION, |
| 9 description="WebSocket client for python. hybi13 is supported.", |
| 10 long_description=open("README.rst").read(), |
| 11 author="liris", |
| 12 author_email="liris.pp@gmail.com", |
| 13 license="LGPL", |
| 14 url="https://github.com/liris/websocket-client", |
| 15 classifiers = [ |
| 16 "Development Status :: 3 - Alpha", |
| 17 "License :: OSI Approved :: GNU Library or Lesser General Public License
(LGPL)", |
| 18 "Programming Language :: Python", |
| 19 "Operating System :: MacOS :: MacOS X", |
| 20 "Operating System :: POSIX", |
| 21 "Operating System :: Microsoft :: Windows", |
| 22 "Topic :: Internet", |
| 23 "Topic :: Software Development :: Libraries :: Python Modules", |
| 24 "Intended Audience :: Developers", |
| 25 ], |
| 26 py_modules=["websocket"], |
| 27 scripts=["bin/wsdump.py"] |
| 28 ) |
OLD | NEW |