aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar Dandelion Mané <dandelion@google.com>2017-01-18 20:33:45 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2017-01-18 20:49:35 -0800
commit94d1f971951d5b0798a0ca64423bf4a3a8b44051 (patch)
treefb6265a79571ce7bdf6f925e906a79c58862c621 /third_party
parentc39fb3bf9f58dcc789dab7e1871a09786fc464e7 (diff)
Add werkzeug as a dependency to TensorBoard.
This is in preparation for making TensorBoard a WSGI app. Change: 144917110
Diffstat (limited to 'third_party')
-rw-r--r--third_party/werkzeug.BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/third_party/werkzeug.BUILD b/third_party/werkzeug.BUILD
new file mode 100644
index 0000000000..aaf1614bb9
--- /dev/null
+++ b/third_party/werkzeug.BUILD
@@ -0,0 +1,14 @@
+# Description:
+# Werkzeug provides utilities for making WSGI applications
+
+licenses(["notice"]) # BSD 3-Clause
+
+exports_files(["LICENSE"])
+
+# Note: this library includes test code. Consider creating a testonly target.
+py_library(
+ name = "werkzeug",
+ srcs = glob(["werkzeug/werkzeug/*.py"]),
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+)