-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
45 lines (41 loc) · 1.03 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "xradarsat2"
[tool.setuptools_scm]
local_scheme = "no-local-version"
fallback_version = "9999"
[project]
name = "xradarsat2"
authors = [
{ name="Yann Reynaud", email="[email protected]" },
]
license = {text = "MIT"}
description = "xarray/dask distributed L1 sar file reader for radarSat2"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
'xmltodict',
'numpy',
"xarray>=2024.10.0",
'rasterio',
'rioxarray',
'dask',
'affine',
'regex',
'pyyaml'
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/umr-lops/xradarsat2"
"Bug Tracker" = "https://github.com/umr-lops/xradarsat2/issues"