Add a folder for numpy API

PiperOrigin-RevId: 312374580
Change-Id: Ic8be81b738659668814e956d7fd4da7972944257
diff --git a/tensorflow/python/ops/numpy/BUILD b/tensorflow/python/ops/numpy/BUILD
new file mode 100644
index 0000000..c5b8828
--- /dev/null
+++ b/tensorflow/python/ops/numpy/BUILD
@@ -0,0 +1,16 @@
+# TF numpy API
+
+package(
+    default_visibility = [
+        "//tensorflow:internal",
+    ],
+    licenses = ["notice"],  # Apache 2.0
+)
+
+py_library(
+    name = "numpy",
+    srcs = [
+        "__init__.py",
+    ],
+    srcs_version = "PY2AND3",
+)
diff --git a/tensorflow/python/ops/numpy/__init__.py b/tensorflow/python/ops/numpy/__init__.py
new file mode 100644
index 0000000..d78a4c3
--- /dev/null
+++ b/tensorflow/python/ops/numpy/__init__.py
@@ -0,0 +1,19 @@
+# Copyright 2020 The TensorFlow Authors. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+# ==============================================================================
+"""Tensorflow numpy API."""
+
+from __future__ import absolute_import
+from __future__ import division
+from __future__ import print_function