Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Side by Side Diff: tools/devtools_auto/third_party/websocket-client/setup.py

Issue 10831399: Revert 152439 - Initial checkin for devtools-based automation (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698