2023-03-08 22:11:09 +00:00
|
|
|
# -*- mode: bazel -*-
|
|
|
|
# A global prelude for all BUILD[.bazel] files
|
|
|
|
|
|
|
|
load("//tools/python:defs.bzl",
|
|
|
|
"py_library",
|
|
|
|
"py_binary",
|
|
|
|
"py_unittest",
|
|
|
|
"py_pytest",
|
|
|
|
"py_resources",
|
|
|
|
"py_project",
|
|
|
|
)
|
|
|
|
|
2023-03-15 06:45:32 +00:00
|
|
|
load("@pypi//:requirements.bzl",
|
2023-03-08 22:11:09 +00:00
|
|
|
py_requirement="requirement"
|
|
|
|
)
|