aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py
diff options
context:
space:
mode:
authorGravatar Alex Humesky <ahumesky@google.com>2015-05-19 17:25:26 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-05-21 09:45:15 +0000
commitfa6fbc87be2f980d1fb93946f0cad64461b98301 (patch)
tree527d591fcfad7c61c3ea6dc6b06b39e833ee2efb /third_party/py
parent2221860f50ccf2b77065f5e9dd02714706dbfb10 (diff)
Adds build files and readme's for third party python libraries.
-- MOS_MIGRATED_REVID=94001567
Diffstat (limited to 'third_party/py')
-rw-r--r--third_party/py/concurrent/BUILD7
-rw-r--r--third_party/py/concurrent/README.md8
-rw-r--r--third_party/py/gflags/BUILD10
-rw-r--r--third_party/py/gflags/README.md6
-rw-r--r--third_party/py/mock/BUILD7
-rw-r--r--third_party/py/mock/README.md6
6 files changed, 44 insertions, 0 deletions
diff --git a/third_party/py/concurrent/BUILD b/third_party/py/concurrent/BUILD
new file mode 100644
index 0000000000..5a9d3cff9f
--- /dev/null
+++ b/third_party/py/concurrent/BUILD
@@ -0,0 +1,7 @@
+licenses(["notice"])
+
+py_library(
+ name = "futures",
+ srcs = glob(["**/*.py"]),
+ visibility = ["//visibility:public"],
+)
diff --git a/third_party/py/concurrent/README.md b/third_party/py/concurrent/README.md
new file mode 100644
index 0000000000..9973ba08f9
--- /dev/null
+++ b/third_party/py/concurrent/README.md
@@ -0,0 +1,8 @@
+[concurrent](https://github.com/agronholm/pythonfutures)
+--------
+
+Backport of the concurrent.futures package from Python 3.2, version 2.1.2
+
+* Version: 2.1.2
+* License: BSD License
+* From: [http://pypi.python.org/packages/source/f/futures/futures-2.1.2.tar.gz](http://pypi.python.org/packages/source/f/futures/futures-2.1.2.tar.gz)
diff --git a/third_party/py/gflags/BUILD b/third_party/py/gflags/BUILD
new file mode 100644
index 0000000000..6e475abaea
--- /dev/null
+++ b/third_party/py/gflags/BUILD
@@ -0,0 +1,10 @@
+licenses(["notice"])
+
+py_library(
+ name = "gflags",
+ srcs = [
+ "__init__.py",
+ "gflags_validators.py",
+ ],
+ visibility = ["//visibility:public"],
+)
diff --git a/third_party/py/gflags/README.md b/third_party/py/gflags/README.md
new file mode 100644
index 0000000000..da2a03fc1c
--- /dev/null
+++ b/third_party/py/gflags/README.md
@@ -0,0 +1,6 @@
+[gflags](https://python-gflags.googlecode.com)
+--------
+
+* Version: 2.0
+* License: New BSD License
+* From: [https://python-gflags.googlecode.com/files/python-gflags-2.0.tar.gz](https://python-gflags.googlecode.com/files/python-gflags-2.0.tar.gz)
diff --git a/third_party/py/mock/BUILD b/third_party/py/mock/BUILD
new file mode 100644
index 0000000000..5cf52f660a
--- /dev/null
+++ b/third_party/py/mock/BUILD
@@ -0,0 +1,7 @@
+licenses(["notice"])
+
+py_library(
+ name = "mock",
+ srcs = ["__init__.py"],
+ visibility = ["//visibility:public"],
+)
diff --git a/third_party/py/mock/README.md b/third_party/py/mock/README.md
new file mode 100644
index 0000000000..26a0707dbd
--- /dev/null
+++ b/third_party/py/mock/README.md
@@ -0,0 +1,6 @@
+[mock](http://www.voidspace.org.uk/python/mock/)
+--------
+
+* Version: 1.0.1
+* License: BSD License
+* From: [http://pypi.python.org/packages/source/m/mock/mock-1.0.1.tar.gz](http://pypi.python.org/packages/source/m/mock/mock-1.0.1.tar.gz)