1
0
Fork 0

tools: add python future module

master
q3k 2019-01-18 00:22:50 +01:00
parent 41bd2b52c2
commit 98691e9e5e
2 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,7 @@ bcrypt==3.1.5
cffi==1.11.5
cryptography==2.4.2
fabric==2.4.0
future==0.17.1
idna==2.8
invoke==1.2.0
paramiko==2.4.2

View File

@ -6,6 +6,9 @@ py_binary(
name = "secretstore",
srcs = ["secretstore.py"],
visibility = ["//visibility:public"],
deps = [
requirement("future"),
],
)
py_binary(
@ -14,6 +17,7 @@ py_binary(
visibility = ["//visibility:public"],
deps = [
requirement("fabric"),
requirement("future"),
],
)