aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/twisted.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/twisted.BUILD')
-rw-r--r--third_party/twisted.BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/twisted.BUILD b/third_party/twisted.BUILD
new file mode 100644
index 0000000000..5005c5a3f8
--- /dev/null
+++ b/third_party/twisted.BUILD
@@ -0,0 +1,15 @@
+py_library(
+ name = "twisted",
+ srcs = glob(["src/twisted/**/*.py"]),
+ imports = [
+ "src",
+ ],
+ visibility = [
+ "//visibility:public",
+ ],
+ deps = [
+ "@com_github_twisted_incremental//:incremental",
+ "@com_github_twisted_constantly//:constantly",
+ "@com_github_zopefoundation_zope_interface//:zope_interface",
+ ],
+)