aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Masood Malekghassemi <atash@google.com>2016-01-21 15:15:38 -0800
committerGravatar Masood Malekghassemi <atash@google.com>2016-01-21 15:15:38 -0800
commitad32ff4e615b1c05d95b086e3092473177256f16 (patch)
treeda6b06bdcc889e905a22f654b6ec031188faf806
parent4683576e4afbbc146f8998c4bc132a879181adc5 (diff)
Depend on Python protobuf in grpcio
-rw-r--r--setup.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/setup.py b/setup.py
index 4012397800..dfe5b3f8b4 100644
--- a/setup.py
+++ b/setup.py
@@ -120,6 +120,9 @@ PACKAGE_DIRECTORIES = {
INSTALL_REQUIRES = (
'enum34>=1.0.4',
'futures>=2.2.0',
+ # TODO(atash): eventually split the grpcio package into a metapackage
+ # depending on protobuf and the runtime component (independent of protobuf)
+ 'protobuf>=3.0.0a3',
)
SETUP_REQUIRES = (