Hiroki Ohtani 2be0632fd7 - commit test code and add more test code
- fix bugs found with some unittest
2011-01-05 00:02:28 +09:00

28 lines
843 B
Python

from setuptools import setup
VERSION = "0.4"
setup(
name="websocket-client",
version=VERSION,
description="WebSocket client for python",
long_description=open("README").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"],
)