Skip to content

Commit

Permalink
Add httplib2 as dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
pradh committed Oct 11, 2018
1 parent 6410fad commit 08526db
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions datacommons/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ py_library(
srcs = glob(["*.py"]),
deps = [
requirement("google-api-python-client"),
requirement("httplib2"),
requirement("oauth2client"),
requirement("pandas"),
]
Expand Down
5 changes: 3 additions & 2 deletions requirements.bazel.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
numpy
pandas
google-api-python-client
httplib2
mock
numpy
oauth2client
pandas
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@
VERSION = '0.1'

REQUIRED = [
'numpy',
'pandas',
'google-api-python-client',
'httplib2',
'numpy',
'oauth2client',
'pandas',
]

PACKAGES = ['datacommons']
Expand Down

0 comments on commit 08526db

Please sign in to comment.