Martin Wicke | 914c870 | 2016-01-25 14:42:53 -0800 | [diff] [blame] | 1 | # Description: |
| 2 | # contains parts of TensorFlow that are experimental or unstable and which are not supported. |
| 3 | |
| 4 | licenses(["notice"]) # Apache 2.0 |
| 5 | |
| 6 | exports_files(["LICENSE"]) |
| 7 | |
| 8 | package(default_visibility = ["//tensorflow:__subpackages__"]) |
| 9 | |
| 10 | py_library( |
| 11 | name = "contrib_py", |
| 12 | srcs = glob(["**/*.py"]), |
| 13 | srcs_version = "PY2AND3", |
A. Unique TensorFlower | 1e14183 | 2016-02-02 09:49:05 -0800 | [diff] [blame] | 14 | deps = [ |
Eugene Brevdo | 8509f88 | 2016-02-26 10:22:06 -0800 | [diff] [blame] | 15 | "//tensorflow/contrib/ctc:ctc_py", |
Eugene Brevdo | 06b0813 | 2016-02-26 17:19:02 -0800 | [diff] [blame^] | 16 | "//tensorflow/contrib/distributions:distributions_py", |
A. Unique TensorFlower | 1e14183 | 2016-02-02 09:49:05 -0800 | [diff] [blame] | 17 | "//tensorflow/contrib/layers:layers_py", |
A. Unique TensorFlower | 94a992c | 2016-02-23 18:51:19 -0800 | [diff] [blame] | 18 | "//tensorflow/contrib/linear_optimizer:sdca_ops_py", |
A. Unique TensorFlower | d1aed65 | 2016-02-25 10:39:17 -0800 | [diff] [blame] | 19 | "//tensorflow/contrib/testing:testing_py", |
Geoffrey Irving | d797048 | 2016-02-08 09:34:09 -0800 | [diff] [blame] | 20 | "//tensorflow/contrib/util:util_py", |
A. Unique TensorFlower | 1e14183 | 2016-02-02 09:49:05 -0800 | [diff] [blame] | 21 | ], |
Martin Wicke | 914c870 | 2016-01-25 14:42:53 -0800 | [diff] [blame] | 22 | ) |
| 23 | |
| 24 | filegroup( |
| 25 | name = "all_files", |
| 26 | srcs = glob( |
| 27 | ["**/*"], |
| 28 | exclude = [ |
| 29 | "**/METADATA", |
| 30 | "**/OWNERS", |
| 31 | ], |
| 32 | ), |
| 33 | visibility = ["//tensorflow:__subpackages__"], |
| 34 | ) |