aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/html5lib.BUILD
blob: 63aac14f1559a86f626a5d99db973111f86f92ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Description:
# Import of html5lib library.

package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # BSD-like notice-style license, see LICENSE file

exports_files(["LICENSE"])

py_library(
    name = "org_html5lib",
    srcs = glob(["html5lib/**/*.py"]),
    srcs_version = "PY2AND3",
    deps = [
        "@six_archive//:six",
    ],
)