From fa6fbc87be2f980d1fb93946f0cad64461b98301 Mon Sep 17 00:00:00 2001 From: Alex Humesky Date: Tue, 19 May 2015 17:25:26 +0000 Subject: Adds build files and readme's for third party python libraries. -- MOS_MIGRATED_REVID=94001567 --- third_party/py/concurrent/BUILD | 7 +++++++ third_party/py/concurrent/README.md | 8 ++++++++ third_party/py/gflags/BUILD | 10 ++++++++++ third_party/py/gflags/README.md | 6 ++++++ third_party/py/mock/BUILD | 7 +++++++ third_party/py/mock/README.md | 6 ++++++ 6 files changed, 44 insertions(+) create mode 100644 third_party/py/concurrent/BUILD create mode 100644 third_party/py/concurrent/README.md create mode 100644 third_party/py/gflags/BUILD create mode 100644 third_party/py/gflags/README.md create mode 100644 third_party/py/mock/BUILD create mode 100644 third_party/py/mock/README.md (limited to 'third_party/py') 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) -- cgit v1.2.3