updated requirements and setup.py to include fabric/invoke

This commit is contained in:
Blake Harnden 2019-10-17 08:41:48 -07:00
parent 774dd8330c
commit 7afaff8cbb
2 changed files with 4 additions and 0 deletions

View file

@ -1,7 +1,9 @@
configparser==4.0.2 configparser==4.0.2
fabric==2.5.0
future==0.17.1 future==0.17.1
grpcio==1.23.0 grpcio==1.23.0
grpcio-tools==1.21.1 grpcio-tools==1.21.1
invoke==1.3.0
lxml==4.4.1 lxml==4.4.1
protobuf==3.9.1 protobuf==3.9.1
six==1.12.0 six==1.12.0

View file

@ -35,8 +35,10 @@ setup(
packages=find_packages(), packages=find_packages(),
install_requires=[ install_requires=[
"configparser", "configparser",
"fabric",
"future", "future",
"grpcio", "grpcio",
"invoke",
"lxml", "lxml",
"protobuf", "protobuf",
], ],