-
Notifications
You must be signed in to change notification settings - Fork 26
/
pyproject.toml
86 lines (75 loc) · 1.62 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
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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
[project]
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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering"
]
dependencies = [
"attrs",
"flox",
"mock",
"numpy",
"pandas",
"rasterio",
"rioxarray",
"typer",
"xarray >= 2022.06.0",
"xarray-sentinel >= 0.9.3"
]
description = "Algorithms and utilities for Synthetic Aperture Radar (SAR) sensors"
dynamic = ["version"]
license = {file = "LICENSE"}
name = "sarsen"
readme = "README.md"
[project.scripts]
sarsen = "sarsen.__main__:app"
[tool.coverage.run]
branch = true
[tool.mypy]
plugins = "numpy.typing.mypy_plugin"
strict = true
[[tool.mypy.overrides]]
ignore_missing_imports = true
module = ["py", "rasterio"]
[tool.ruff]
ignore = [
# pydocstyle: Missing Docstrings
"D1"
]
# Same as Black.
indent-width = 4
line-length = 88
select = [
# pyflakes
"F",
# pycodestyle
"E",
"W",
# isort
"I",
# pydocstyle
"D"
]
[tool.ruff.lint.pycodestyle]
max-line-length = 110
[tool.ruff.pydocstyle]
convention = "numpy"
[tool.setuptools]
packages = ["sarsen"]
[tool.setuptools.package-data]
sarsen = ["py.typed"]
[tool.setuptools_scm]
write_to = "sarsen/version.py"
write_to_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''