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
83
84
85
86
87
88
89
90
91
|
- [build-system]
- build-backend = "hatchling.build"
- requires = [
- "hatch-vcs",
- "hatchling",
- ]
- [project]
- name = "virtual_tiff"
- dynamic = ["version"]
- description = ''
- readme = "README.md"
- requires-python = ">=3.11"
- license = "MIT"
- keywords = []
- authors = [
- { name = "Max Jones", email = "14077947+maxrjones@users.noreply.github.com" },
- ]
- classifiers = [
- "Development Status :: 4 - Beta",
- "Programming Language :: Python",
- "Programming Language :: Python :: 3.8",
- "Programming Language :: Python :: 3.9",
- "Programming Language :: Python :: 3.10",
- "Programming Language :: Python :: 3.11",
- "Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: Implementation :: CPython",
- "Programming Language :: Python :: Implementation :: PyPy",
- ]
- dependencies = [
- "obstore",
- "async_tiff",
- "virtualizarr",
- "imagecodecs",
- "imagecodecs-numcodecs",
- ]
- # Dependency sets under dependencies-groups are NOT available via PyPI
- [dependency-groups]
- docs = [
- "sphinx",
- "myst_nb",
- "pydata_sphinx_theme",
- "sphinx_copybutton",
- "sphinx_design",
- "sphinx_togglebutton",
- "sphinx-autobuild>=2021.3.14",
- "sphinx-autodoc-typehints",
- ]
- dev = [
- "codecov",
- "netcdf4",
- "mypy",
- "pandas-stubs",
- "pooch",
- "pre-commit",
- "pytest",
- "pytest-asyncio",
- "pytest-cov",
- "pytest-mypy",
- "pytest-xdist",
- "ruff",
- "s3fs",
- "lithops",
- "dask",
- "rioxarray",
- "rasterio",
- "earthaccess",
- "xarray",
- ]
- [tool.coverage.run]
- source_pkgs = [""]
- branch = true
- parallel = true
- omit = []
- [tool.uv.sources]
- virtualizarr = { git = "https://github.com/zarr-developers/VirtualiZarr.git" }
- obstore = { git = "https://github.com/developmentseed/obstore", subdirectory="obstore", rev = "848e7c99972f9e13c185dd1f84b1194f5621015f" }
- async_tiff = { git = "https://github.com/developmentseed/async-tiff", subdirectory="python", rev = "c720f01235ea706d8fb926909eb68409e07149ed" }
- [tool.hatch.version]
- source = "vcs"
- [tool.hatch.build.targets.wheel]
- packages = [
- "src/virtual_tiff",
- ]
|