forked from ua-asf/Discovery-kerchunk-timeseries
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (32 loc) · 983 Bytes
/
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
version = "0.0.1"
name = "asf_kerchunk_timeseries"
authors = [
{name = "Alaska Satellite Facility Discovery Team", email = "[email protected]"},
]
description = """This package is a wrapper around [Kerchunk](https://github.com/fsspec/kerchunk) for generating
zarr stores for individual netcdf4/hdf5 files as well as consolidating spatially aligned zarr stores
into a single temporal zarr store, indexed by the source_file_name."""
readme = "README.MD"
requires-python = ">=3.9"
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"aiobotocore==2.15.1",
"zarr==2.18.2",
"kerchunk==0.2.6",
"s3fs==2024.9.0",
"ujson==5.10.0",
"h5py==3.12.1",
]
[project.optional-dependencies]
dev = [
"pytest==8.3.3",
]
[tool.setuptools]
package-dir = {"asf_kerchunk_timeseries" = "src/"}