-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
94 lines (78 loc) · 1.96 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
[project]
name = "xarray-safe-asar"
description = "Python lib to read ASAR SLC product from ENVISAT mission (2002-2012)."
readme = "README.md"
authors = [
{name = "Antoine GROUAZEL", email = "antoine.grouazel@ifremer.fr"}
]
maintainers = [
{name = "Antoine GROUAZEL", email = "antoine.grouazel@ifremer.fr"}
]
keywords = [
"xarray",
"earth-observation",
"remote-sensing",
"satellite-imagery",
"asar",
"envisat",
"sar",
"synthetic-aperture-radar",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
dynamic = ["version"]
license = {text = "MIT license"}
dependencies = [
'xarray>=2024.10.0',
'numpy',
'pandas',
'matplotlib'
]
[project.optional-dependencies]
dev = [
"coverage", # testing
"mypy", # linting
"pytest", # testing
"ruff" # linting
]
[project.urls]
bugs = "https://github.com/umr-lops/xarray-safe-asar/issues"
changelog = "https://github.com/umr-lops/xarray-safe-asar/blob/master/changelog.md"
homepage = "https://github.com/umr-lops/xarray-safe-asar"
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["n1_asar"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.setuptools.package-data]
"*" = ["*.*"]
[tool.black]
line-length = 100
[tool.coverage.run]
source = ["ceos_alos2"]
branch = true
# Mypy
# ----
[tool.mypy]
files = "."
# Use strict defaults
strict = true
warn_unreachable = true
warn_no_return = true
[[tool.mypy.overrides]]
# Don't require test functions to include types
module = "tests.*"
allow_untyped_defs = true
disable_error_code = "attr-defined"
known_first_party = "n1_asar"