-
Notifications
You must be signed in to change notification settings - Fork 250
Expand file tree
/
Copy pathpyproject.toml
More file actions
91 lines (84 loc) · 2.12 KB
/
Copy pathpyproject.toml
File metadata and controls
91 lines (84 loc) · 2.12 KB
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
[project]
name = "titiler-xarray"
description = "Xarray plugin for TiTiler."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{name = "Vincent Sarago", email = "vincent@developmentseed.com"},
{name = "Aimee Barciauskas", email = "aimee@developmentseed.com"},
]
license = {text = "MIT"}
keywords = [
"TiTiler",
"Xarray",
"Zarr",
"NetCDF",
"HDF",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: GIS",
]
dynamic = ["version"]
dependencies = [
"titiler-core==2.1.0", # x-release-please-version
"xarray",
"rioxarray",
"obstore",
"zarr>=3.1,<4.0",
"starlette-cramjam>=0.4,<1.0",
"pydantic-settings~=2.0",
"httpx2",
]
[project.optional-dependencies]
fs = [
"h5netcdf",
"h5py",
"fsspec",
"s3fs>=2025.2.0",
"aiohttp",
"gcsfs",
"requests",
]
telemetry = [
"opentelemetry-api",
"opentelemetry-sdk",
"opentelemetry-instrumentation-fastapi",
"opentelemetry-instrumentation-logging",
"opentelemetry-exporter-otlp",
]
[dependency-groups]
test = [
"pytest",
"pytest-cov",
"pytest-asyncio",
"h5netcdf",
"h5py",
"fsspec",
"s3fs",
"aiohttp",
"requests",
]
[project.urls]
Homepage = "https://developmentseed.org/titiler/"
Documentation = "https://developmentseed.org/titiler/"
Issues = "https://github.com/developmentseed/titiler/issues"
Source = "https://github.com/developmentseed/titiler"
Changelog = "https://developmentseed.org/titiler/release-notes/"
[tool.hatch.version]
path = "titiler/xarray/__init__.py"
[tool.hatch.build.targets.sdist]
only-include = ["titiler"]
[tool.hatch.build.targets.wheel]
only-include = ["titiler"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"