-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
99 lines (90 loc) · 2.33 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
87
88
89
90
91
92
93
94
95
96
97
98
99
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "sarxarray"
version = "1.0.2"
requires-python = ">=3.10"
dependencies = [
"dask[complete]",
"xarray",
"numpy",
"distributed",
"zarr",
]
description = "Xarray extension for Synthetic Aperture Radar (SAR) data"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Ou Ku", email = "[email protected]"},
{name = "Fakhereh Sarah Alidoost"},
{name = "Pranav Chandramouli"},
{name = "Francesco Nattino"},
{name = "Freek van Leijen"},
]
keywords = ["radar", "sar", "insar", "earth observation", "distributed computing"]
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
]
[project.urls]
repository = "https://github.com/TUDelftGeodesy/sarxarray"
doi = "https://doi.org/10.5281/zenodo.7717112"
documentation = "https://tudelftgeodesy.github.io/sarxarray/"
changelog = "https://tudelftgeodesy.github.io/sarxarray/CHANGELOG/"
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pycodestyle",
"ruff",
"pre-commit",
]
docs = [
"mkdocs",
"mkdocs-material",
"mkdocs-jupyter",
"mkdocstrings[python]",
"mkdocs-gen-files",
]
demo = [
"jupyterlab",
"matplotlib",
]
[tool.setuptools]
packages = ["sarxarray"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--cov --cov-report term"
testpaths = [
"tests",
]
[tool.coverage.run]
branch = true
source = ["sarxarray"]
[tool.ruff]
select = [
"E", # pycodestyle
"F", # pyflakes
"B", # flake8-bugbear
"D", # pydocstyle
"I", # isort
"N", # PEP8-naming
"UP", # pyupgrade (upgrade syntax to current syntax)
"PLE", # Pylint error https://github.com/charliermarsh/ruff#error-ple
]
ignore = [
"D100", "D101", "D104", "D105", "D106", "D107", "D203", "D213", "D413"
] # docstring style
line-length = 88
exclude = ["docs", "build", "examples"]
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
target-version = "py310"
[tool.ruff.per-file-ignores]
"tests/**" = ["D"]