aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/werkzeug.BUILD
blob: 72a1402030d150c21b5d43261a4d5e2c0f1bce91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Description:
#   Werkzeug provides utilities for making WSGI applications

licenses(["notice"])  # BSD 3-Clause

exports_files(["LICENSE"])

# Note: this library includes test code. Consider creating a testonly target.
py_library(
    name = "werkzeug",
    srcs = glob(["werkzeug/*.py"]),
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
)