1 package( 2 default_visibility = ["//tensorflow:internal"], 3 ) 4 5 load("//tensorflow:tensorflow.bzl", "py_test") 6 7 licenses(["notice"]) # Apache 2.0 8 9 py_library( 10 name = "distributions", 11 srcs = glob(["*.py"]), 12 srcs_version = "PY2AND3", 13 deps = [ 14 "//tensorflow/python:array_ops", 15 "//tensorflow/python:check_ops", 16 "//tensorflow/python:control_flow_ops", 17 "//tensorflow/python:framework_for_generated_wrappers", 18 "//tensorflow/python:math_ops", 19 "//tensorflow/python:nn", 20 "//tensorflow/python:nn_ops", 21 "//tensorflow/python:random_ops", 22 "//tensorflow/python:special_math_ops", 23 "//tensorflow/python:tensor_util", 24 "//tensorflow/python:util", 25 "//third_party/py/numpy", 26 "@six_archive//:six", 27 ], 28 ) 29 30 filegroup( 31 name = "all_files", 32 srcs = glob( 33 ["**/*"], 34 exclude = [ 35 "**/METADATA", 36 "**/OWNERS", 37 ], 38 ), 39 visibility = ["//tensorflow:__subpackages__"], 40 ) 41