Skip to content

Commit

Permalink
Add requirements for hdfs handler
Browse files Browse the repository at this point in the history
  • Loading branch information
carlee0 committed Feb 7, 2020
1 parent f53e12b commit bf47b5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions requirements-hdfs.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pyarrow
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ def read_reqs(fname):
s3_reqs = read_reqs('requirements-s3.txt')
azure_reqs = read_reqs('requirements-azure.txt')
gcs_reqs = read_reqs('requirements-gcs.txt')
all_reqs = s3_reqs + azure_reqs + gcs_reqs
hdfs_reqs = read_reqs('requirements-hdfs.txt')
all_reqs = s3_reqs + azure_reqs + gcs_reqs + hdfs_reqs
dev_reqs = read_reqs('requirements-dev.txt') + all_reqs
extras_require = {
"test": dev_reqs,
Expand All @@ -50,6 +51,7 @@ def read_reqs(fname):
"s3": s3_reqs,
"azure": azure_reqs,
"gcs": gcs_reqs,
"hdfs": hdfs_reqs,
}

# Get the long description from the README file
Expand Down

0 comments on commit bf47b5c

Please sign in to comment.