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

Side by Side Diff: tools/telemetry/third_party/gsutilz/third_party/socksipy-branch/setup.py

Issue 1264873003: Add gsutil/third_party to telemetry/third_party/gsutilz/third_party. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove httplib2 Created 5 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
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 from distutils.core import setup
3
4 VERSION = "1.02"
5
6 setup(
7 name = "SocksiPy-branch",
8 version = VERSION,
9 description = "A Python SOCKS module",
10 long_description = "This Python module allows you to create TCP connections thro ugh a SOCKS proxy without any special effort.",
11 url = "http://socksipy.sourceforge.net/",
12 author = "Dan-Haim",
13 author_email="negativeiq@users.sourceforge.net",
14 license = "BSD",
15 py_modules=["socks"]
16 )
17
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698