24 lines
754 B
Python
24 lines
754 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="websocket-client",
|
|
version="0.1",
|
|
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 :: LGPL License",
|
|
"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",
|
|
],
|
|
)
|