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

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

Issue 10825463: 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 side-by-side diff with in-line comments
Download patch
Index: tools/devtools_auto/third_party/websocket-client/setup.py
diff --git a/tools/devtools_auto/third_party/websocket-client/setup.py b/tools/devtools_auto/third_party/websocket-client/setup.py
new file mode 100644
index 0000000000000000000000000000000000000000..e11400edb6b7b4f730cd62e42a56b100fc7e4cd5
--- /dev/null
+++ b/tools/devtools_auto/third_party/websocket-client/setup.py
@@ -0,0 +1,28 @@
+from setuptools import setup
+
+VERSION = "0.7.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"],
+ scripts=["bin/wsdump.py"]
+)

Powered by Google App Engine
This is Rietveld 408576698