-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
128 lines (114 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
128 lines (114 loc) · 2.53 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[dependency-groups]
dev = [
"cfchecker>=4.1.0",
"dask>=2025.7.0",
"mypy>=1.15.0",
"pandas-stubs>=1.4.0",
"pre-commit>=4.3.0",
"pytest>=7.0",
"pytest-cov>=5.0",
"shapely>=2.1",
"stac-validator>=3.6.0",
"zarr>=2.18.3"
]
[project]
authors = [{"name" = "B-Open", "email" = "software@bopen.eu"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering"
]
dependencies = [
"fsspec>=2023.1.0",
"numpy>=1.22.0",
"pandas>=1.4.0",
"pydantic>=2.11.7",
"rioxarray>=0.13.0",
"scipy>=1.10.0",
"xarray>=2023.2.0",
"xmlschema>=2.2.0"
]
description = "Easily access and explore the SAR data products of the Copernicus Sentinel-1 satellite mission"
dynamic = ["version"]
keywords = [
"copernicus",
"earth-observation",
"radar",
"remote-sensing",
"satellite-imagery",
"sentinel-1",
"sar",
"synthetic-aperture-radar",
"xarray"
]
license = {file = "LICENSE"}
name = "xarray-sentinel"
readme = "README.md"
requires-python = ">=3.10"
[project.entry-points."xarray.backends"]
sentinel-1 = "xarray_sentinel.xarray_backends:Sentinel1Backend"
[project.urls]
repository = "https://github.com/bopen/xarray-sentinel"
[tool.coverage.run]
branch = true
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = [
"cfchecker",
"dask",
"fsspec",
"pydantic",
"pydantic.alias_generators",
"rasterio",
"shapely",
"shapely.geometry",
"shapely.wkt",
"stac_validator"
]
[tool.ruff]
# Same as Black.
indent-width = 4
line-length = 88
[tool.ruff.lint]
ignore = [
# pydocstyle: Missing Docstrings
"D1"
]
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 110
[tool.ruff.lint.pydocstyle]
convention = "numpy"
[tool.setuptools]
packages = ["xarray_sentinel"]
[tool.setuptools.package-data]
xarray_sentinel = ["py.typed"]
[tool.setuptools_scm]
write_to = "xarray_sentinel/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''