Skip to content

Commit

Permalink
Add optional requirements for fsspec and s3fs
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Nov 12, 2023
1 parent 8f2ffc6 commit 5e028a1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions requirements-opt.txt
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
tqdm==4.65.0
fsspec==2023.10.0
s3fs==2023.10.0
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@
'url': 'https://github.com/hdmf-dev/hdmf-zarr',
'license': "BSD",
'install_requires': reqs,
'extras_require': {"tqdm": ["tqdm>=4.41.0"]},
'extras_require': {"tqdm": ["tqdm>=4.41.0"],
"fsspec": ["fsspec"],
"s3fs": ["s3fs"]},
'packages': pkgs,
'package_dir': {'': 'src'},
'package_data': {},
Expand Down

0 comments on commit 5e028a1

Please sign in to comment.