aboutsummaryrefslogtreecommitdiff
path: root/python/pip_install/tools/wheel_installer/BUILD.bazel
diff options
context:
space:
mode:
Diffstat (limited to 'python/pip_install/tools/wheel_installer/BUILD.bazel')
-rw-r--r--python/pip_install/tools/wheel_installer/BUILD.bazel13
1 files changed, 12 insertions, 1 deletions
diff --git a/python/pip_install/tools/wheel_installer/BUILD.bazel b/python/pip_install/tools/wheel_installer/BUILD.bazel
index 54bbc46..6360ca5 100644
--- a/python/pip_install/tools/wheel_installer/BUILD.bazel
+++ b/python/pip_install/tools/wheel_installer/BUILD.bazel
@@ -4,12 +4,12 @@ load("//python/pip_install:repositories.bzl", "requirement")
py_library(
name = "lib",
srcs = [
+ "arguments.py",
"namespace_pkgs.py",
"wheel.py",
"wheel_installer.py",
],
deps = [
- "//python/pip_install/tools/lib",
requirement("installer"),
requirement("pip"),
requirement("setuptools"),
@@ -25,6 +25,17 @@ py_binary(
)
py_test(
+ name = "arguments_test",
+ size = "small",
+ srcs = [
+ "arguments_test.py",
+ ],
+ deps = [
+ ":lib",
+ ],
+)
+
+py_test(
name = "namespace_pkgs_test",
size = "small",
srcs = [