-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
65 lines (58 loc) · 1.42 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
[project]
name = "grdwindinversion"
description="Package to perform Wind inversion from GRD Level-1 SAR images"
readme = "README.md"
keywords = [
"xarray",
"earth-observation",
"remote-sensing",
"satellite-imagery",
"Sentinel-1",
"RCM",
"RadarSat2",
"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.11",
"Programming Language :: Python :: 3.12",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
requires-python = ">= 3.9"
license = {text = "MIT"}
authors = [
{ name = "Antoine Grouazel", email = "antoine.grouazel@ifremer.fr" },
]
dependencies = [
"xsar",
"xsarsea",
"xarray",
"xarray-datatree",
"pyyaml",
"numpy",
"scipy",
"fsspec",
"aiohttp",
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["grdwindinversion"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "grdwindinversion"
[project.scripts]
SAR_L1-to-L2_wind_processor = "grdwindinversion.main:processor_starting_point"