• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1py_library(
2    name = "twisted",
3    srcs = glob(["src/twisted/**/*.py"]),
4    imports = [
5        "src",
6    ],
7    visibility = [
8        "//visibility:public",
9    ],
10    deps = [
11        "@com_github_twisted_incremental//:incremental",
12        "@com_github_twisted_constantly//:constantly",
13        "@com_github_zopefoundation_zope_interface//:zope_interface",
14    ],
15)
16