-
Notifications
You must be signed in to change notification settings - Fork 50
Split optional dependencies in pyproject.toml #309
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
6d87930
5b14477
850c38a
aeecf8a
e1df506
a633a0c
4d77fa1
32966e5
aa34761
cc8a218
b4cfe5c
28cbb03
2cbcd2f
af52c4c
65c4af1
a81a845
a34843b
d79e348
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,30 +23,59 @@ dynamic = ["version"] | |
| dependencies = [ | ||
| "xarray>=2024.10.0", | ||
| "numpy>=2.0.0", | ||
| "packaging", | ||
| "universal-pathlib", | ||
| "numcodecs", | ||
| "ujson", | ||
| "packaging", | ||
| ] | ||
|
|
||
| [project.optional-dependencies] | ||
| # non-kerchunk readers | ||
| hdf_reader = [ | ||
| "fsspec", | ||
| "h5py", | ||
| "hdf5plugin", | ||
| "imagecodecs", | ||
| "imagecodecs-numcodecs==2024.6.1", | ||
| "numcodecs" | ||
| ] | ||
| # kerchunk-based readers | ||
| hdf5_reader = [ | ||
| "kerchunk>=0.25.0", | ||
| "h5py", | ||
| ] | ||
| netcdf3_reader = [ | ||
| "kerchunk>=0.25.0", | ||
| "scipy", | ||
| ] | ||
| fits_reader = [ | ||
| "kerchunk>=0.25.0", | ||
| "astropy", | ||
| ] | ||
| # un-implemented readers | ||
| # tiff_reader = [ | ||
| # "kerchunk>=0.25.0", | ||
| # "tifffile", | ||
| # ] | ||
| # grib_reader = ["kerchunk>=0.25.0"] | ||
| # zarr_reader = ["zarr==3.0.0b2"] | ||
| all_readers = [ | ||
| "virtualizarr[hdf]", | ||
| "virtualizarr[hdf5]", | ||
| "virtualizarr[netcdf3]", | ||
| "virtualizarr[fits]", | ||
| # "virtualizarr[tiff]", | ||
| # "virtualizarr[grib]", | ||
| # "virtualizarr[zarr]", | ||
| ] | ||
| # writers | ||
| icechunk = ["icechunk"] | ||
| all = [ | ||
| "virtualizarr[all_readers]", | ||
| "virtualizarr[icechunk]", | ||
|
||
| ] | ||
| test = [ | ||
| "codecov", | ||
| "fastparquet", | ||
| "fsspec", | ||
| "h5py", | ||
| "kerchunk>=0.2.5", | ||
| "mypy", | ||
| "netcdf4", | ||
| "numcodecs", | ||
| "pandas-stubs", | ||
| "pooch", | ||
| "pre-commit", | ||
|
|
@@ -55,11 +84,9 @@ test = [ | |
| "pytest", | ||
| "ruff", | ||
| "s3fs", | ||
| "scipy", | ||
| "virtualizarr[hdf_reader]" | ||
| "virtualizarr[all]" | ||
| ] | ||
|
|
||
|
|
||
| [project.urls] | ||
| Home = "https://github.com/TomNicholas/VirtualiZarr" | ||
| Documentation = "https://github.com/TomNicholas/VirtualiZarr/blob/main/README.md" | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.