File: pyproject.toml

package info (click to toggle)
python-rioxarray 0.21.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 7,480 kB
  • sloc: python: 8,247; makefile: 89
file content (97 lines) | stat: -rw-r--r-- 2,146 bytes parent folder | download
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
92
93
94
95
96
97
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel"]

[project]
name = "rioxarray"
version = "0.21.0"
description = "geospatial xarray extension powered by rasterio"
maintainers = [
    {name = "rioxarray Contributors"},
]
keywords = [
    "rioxarray",
    "xarray",
    "rasterio",
]
readme = "README.rst"
license = {text = "Apache"}
classifiers = [
    "Development Status :: 4 - Beta",
    "Intended Audience :: Developers",
    "Natural Language :: English",
    "License :: OSI Approved :: Apache Software License",
    "Operating System :: OS Independent",
    "Topic :: Scientific/Engineering :: GIS",
    "Programming Language :: Python",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Programming Language :: Python :: 3",
    "Topic :: Software Development :: Libraries :: Python Modules",
    "Typing :: Typed",
]
requires-python = ">=3.12"
dependencies = [
    "packaging",
    "rasterio>=1.4.3",
    # https://github.com/pydata/xarray/issues/11000
    "xarray>=2024.7.0,<2025.12",
    "pyproj>=3.3",
    "numpy>=2",
]

[dependency-groups]
doc = [
    "sphinx-click",
    "nbsphinx",
    "sphinx_rtd_theme",
]
test = [
    "pytest>=3.6",
    "pytest-cov",
    "pytest-timeout",
    "dask",
    "netcdf4",
]
type = [
    "mypy",
]
lint = [
    "pylint"
]
dev = [
    "pre-commit",
    {include-group = "doc"},
    {include-group = "test"},
    {include-group = "type"},
    {include-group = "lint"}
]

[project.urls]
homepage = "https://corteva.github.io/rioxarray/"
documentation = "https://corteva.github.io/rioxarray/"
repository = "https://github.com/corteva/rioxarray"
changelog = "https://corteva.github.io/rioxarray/stable/history.html"

[tool.setuptools.packages.find]
include = ["rioxarray", "rioxarray.*"]

[options.package_data]
rioxarray = [
  "py.typed",
]

[project.entry-points."xarray.backends"]
rasterio = "rioxarray.xarray_plugin:RasterioBackend"

[project.optional-dependencies]
interp = [
    "scipy"
]
all = [
    "scipy"
]

[tool.black]
target_version = ["py310"]