twisted.BUILD 375 B

123456789101112131415
  1. py_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. )