aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/werkzeug.BUILD
blob: aaf1614bb9b8559d7d08ad55ca28dbf2049e2cd7 (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/werkzeug/*.py"]),
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
)