Skip to content

Commit 52a5e5f

Browse files
committed
adds pandas as extra for installation
1 parent 4bc85fd commit 52a5e5f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

bigquery/setup.py

+5
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
'requests >= 2.18.0',
5959
]
6060

61+
EXTRAS_REQUIREMENTS = {
62+
'pandas': ['pandas >= 0.3.0'],
63+
}
64+
6165
setup(
6266
name='google-cloud-bigquery',
6367
version='0.28.1.dev1',
@@ -69,5 +73,6 @@
6973
],
7074
packages=find_packages(exclude=('tests*',)),
7175
install_requires=REQUIREMENTS,
76+
extras_require=EXTRAS_REQUIREMENTS,
7277
**SETUP_BASE
7378
)

0 commit comments

Comments
 (0)