[build-system]
requires = ["maturin>=1.4,<2.0"]
build-backend = "maturin"
[project]
name = "cog3pio"
requires-python = ">=3.12"
license = "MIT OR Apache-2.0"
license-files = ["LICENSE-MIT", "LICENSE-APACHE"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Rust",
"Programming Language :: Python :: Free Threading",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = [
"numpy>=2.0",
"xarray>=2023.12.0",
]
dynamic = ["version"]
[project.optional-dependencies]
benchmark = [
"pytest-codspeed",
"rioxarray",
]
docs = [
"jupyter-book>=2.0.0a0",
"myst_parser",
"sphinx",
"sphinx-ext-mystmd",
]
tests = [
"pytest",
]
[project.entry-points."xarray.backends"]
cog3pio = "cog3pio.xarray_backend:Cog3pioBackendEntrypoint"
[tool.maturin]
python-source = "python"
features = ["pyo3/extension-module"]