-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (52 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
58 lines (52 loc) · 1.47 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
[build-system]
requires = ["setuptools >= 77.0.3"]
build-backend = "setuptools.build_meta"
[project]
name = "xarray-grass"
dynamic = ["version"]
description = "An Xarray backend for GRASS raster data."
authors = [
{ name = "Laurent Courty", email = "lrntct@gmail.com" }
]
readme = "README.md"
license ="GPL-2.0-or-later"
requires-python = ">=3.11"
dependencies = [
"numpy>=2.2.5",
"pyproj>=3.7.1",
"pandas>=2.2.3",
"xarray>=2025.4.0",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"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",
]
[project.urls]
# Homepage = ""
# Documentation = ""
Repository = "https://github.com/lrntct/xarray-grass"
Issues = "https://github.com/lrntct/xarray-grass/issues"
[dependency-groups]
dev = [
"grass-session>=0.5",
"pre-commit>=4.2.0",
"pytest>=8.3.5",
"pytest-random-order>=1.1.1",
"requests>=2.32.3",
"ruff>=0.11.8",
]
[project.entry-points."xarray.backends"]
xarray_grass = "xarray_grass.xarray_grass:GrassBackendEntrypoint"
[tool.pytest.ini_options]
pythonpath = ["src", "."]
addopts = ["--import-mode=importlib"]
[tool.setuptools.dynamic]
version = {attr = "xarray_grass.__version__"}