From 52a5e5ffd7b3a99706a0ea654eb499929e8bb73f Mon Sep 17 00:00:00 2001 From: Alix Hamilton Date: Fri, 10 Nov 2017 10:06:24 -0800 Subject: [PATCH] adds pandas as extra for installation --- bigquery/setup.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/bigquery/setup.py b/bigquery/setup.py index 1dd3a9ff6036a..1819b3bc5e5b7 100644 --- a/bigquery/setup.py +++ b/bigquery/setup.py @@ -58,6 +58,10 @@ 'requests >= 2.18.0', ] +EXTRAS_REQUIREMENTS = { + 'pandas': ['pandas >= 0.3.0'], +} + setup( name='google-cloud-bigquery', version='0.28.1.dev1', @@ -69,5 +73,6 @@ ], packages=find_packages(exclude=('tests*',)), install_requires=REQUIREMENTS, + extras_require=EXTRAS_REQUIREMENTS, **SETUP_BASE )