aboutsummaryrefslogtreecommitdiff
path: root/python/pip_install/tools/wheel_installer/BUILD.bazel
blob: 54bbc46546b4d7edbc416400918de8c0222eff3c (plain)
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
load("//python:defs.bzl", "py_binary", "py_library", "py_test")
load("//python/pip_install:repositories.bzl", "requirement")

py_library(
    name = "lib",
    srcs = [
        "namespace_pkgs.py",
        "wheel.py",
        "wheel_installer.py",
    ],
    deps = [
        "//python/pip_install/tools/lib",
        requirement("installer"),
        requirement("pip"),
        requirement("setuptools"),
    ],
)

py_binary(
    name = "wheel_installer",
    srcs = [
        "wheel_installer.py",
    ],
    deps = [":lib"],
)

py_test(
    name = "namespace_pkgs_test",
    size = "small",
    srcs = [
        "namespace_pkgs_test.py",
    ],
    deps = [
        ":lib",
    ],
)

py_test(
    name = "wheel_installer_test",
    size = "small",
    srcs = [
        "wheel_installer_test.py",
    ],
    data = ["//examples/wheel:minimal_with_py_package"],
    deps = [
        ":lib",
    ],
)

filegroup(
    name = "distribution",
    srcs = glob(
        ["*"],
        exclude = ["*_test.py"],
    ),
    visibility = ["//python/pip_install:__subpackages__"],
)

filegroup(
    name = "py_srcs",
    srcs = glob(
        include = ["**/*.py"],
        exclude = ["**/*_test.py"],
    ),
    visibility = ["//python/pip_install:__subpackages__"],
)