aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/with_third_party_requirements/BUILD.out
blob: 2a97d8bc1e55512e59a5e97c5d62ea6df69d963b (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
load("@rules_python//python:defs.bzl", "py_binary", "py_library")

py_library(
    name = "with_third_party_requirements",
    srcs = [
        "__init__.py",
        "bar.py",
        "foo.py",
    ],
    visibility = ["//:__subpackages__"],
    deps = [
        "@gazelle_python_test_baz//:pkg",
        "@gazelle_python_test_boto3//:pkg",
        "@gazelle_python_test_djangorestframework//:pkg",
    ],
)

py_binary(
    name = "with_third_party_requirements_bin",
    srcs = ["__main__.py"],
    main = "__main__.py",
    visibility = ["//:__subpackages__"],
    deps = ["@gazelle_python_test_baz//:pkg"],
)