-
Notifications
You must be signed in to change notification settings - Fork 80
/
pyproject.toml
82 lines (73 loc) · 1.83 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[project]
name = "kerchunk"
description = "Functions to make reference descriptions for ReferenceFileSystem"
readme = "README.md"
requires-python = ">=3.7"
dynamic = ["version"]
license = {text = "MIT"}
authors = [
{name = "Martin Durant", email = "[email protected]"},
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering",
]
dependencies = [
"fsspec",
"numcodecs",
"numpy",
"ujson",
"zarr<3",
]
[project.optional-dependencies]
cftime = ["cftime"]
fits = ["xarray"]
hdf = ["h5py", "xarray"]
grib2 = ["cfgrib"]
netcdf3 = ["scipy"]
dev = [
"cftime",
"dask",
"fastparquet",
"h5netcdf",
"h5py",
"jinja2",
"mypy",
"pytest",
"s3fs",
"types-ujson",
"xarray>=2024.10.0",
"cfgrib",
"scipy",
"netcdf4"
]
[project.urls]
Documentation = "https://fsspec.github.io/kerchunk"
issue-tracker = "https://github.com/fsspec/kerchunk/issues"
source-code = "https://github.com/fsspec/kerchunk"
[project.entry-points."numcodecs.codecs"]
grib = "kerchunk.codecs:GRIBCodec"
fill_hdf_strings = "kerchunk.codecs:FillStringsCodec"
FITSAscii = "kerchunk.codecs:AsciiTableCodec"
FITSVarBintable = "kerchunk.codecs:VarArrCodec"
record_member = "kerchunk.codecs:RecordArrayMember"
zlib = "kerchunk.codecs:ZlibCodec"
[project.entry-points."xarray.backends"]
kerchunk = "kerchunk.xarray_backend:KerchunkBackend"
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools>=42",
"setuptools-scm>=7",
]
[tool.setuptools]
packages = ["kerchunk"]
[tool.setuptools_scm]
fallback_version = "9999"
version_scheme = "post-release"
local_scheme = "no-local-version"