forked from bazel-contrib/rules_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
35 lines (31 loc) · 845 Bytes
/
Copy pathBUILD
File metadata and controls
35 lines (31 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
exports_files(["pip_compile.py"])
filegroup(
name = "distribution",
srcs = glob(["*.bzl"]) + [
"BUILD",
"pip_compile.py",
"//python/pip_install/extract_wheels:distribution",
"//python/pip_install/parse_requirements_to_bzl:distribution",
"//python/pip_install/private:distribution",
],
visibility = ["//:__pkg__"],
)
filegroup(
name = "bzl",
srcs = glob(["*.bzl"]) + [
"//python/pip_install/private:bzl_srcs",
],
visibility = ["//:__subpackages__"],
)
filegroup(
name = "py_srcs",
srcs = [
"//python/pip_install/extract_wheels:py_srcs",
"//python/pip_install/parse_requirements_to_bzl:py_srcs",
],
visibility = ["//python/pip_install/private:__pkg__"],
)
exports_files(
glob(["*.bzl"]),
visibility = ["//docs:__pkg__"],
)