Files
deb-python-websocket-client/setup.py
liris 777fa2ccbd - start to v0.6.0
- merge ISSUE#11 patches
2012-02-28 12:01:13 +09:00

28 lines
871 B
Python

from setuptools import setup
VERSION = "0.6.0"
setup(
name="websocket-client",
version=VERSION,
description="WebSocket client for python. hybi13 is supported.",
long_description=open("README.rst").read(),
author="liris",
author_email="liris.pp@gmail.com",
license="LGPL",
url="https://github.com/liris/websocket-client",
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Programming Language :: Python",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
],
py_modules=["websocket"],
)