-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 849 Bytes
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 849 Bytes
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 = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cecil"
dynamic = ["version"]
description = 'Python SDK for Cecil Earth'
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"boto3>=1.42.0,<=1.42.84",
"dask>=2025.9.1",
"geopandas>=1.1.3,<2.0.0",
"pyarrow>=22.0.0,<23.0.0",
"pydantic>=2.11.9,<3.0.0",
"requests>=2.32.5,<3.0.0",
"rioxarray>=0.19.0,<1.0.0",
"s3fs>=2026.3.0,<2027.0.0",
"xarray>=2025.6.1",
"zarr>=3.1.6,<4.0.0",
]
[tool.hatch.version]
path = "src/cecil/version.py"
[tool.hatch.envs.hatch-test]
extra-dependencies = [
"responses"
]