-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (39 loc) · 1022 Bytes
/
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
[project]
name = "slcwindinversion"
requires-python = ">= 3.9"
description = "Python library to generate Level-2 wind speed products from intermediate Sentinel-1 TOPS SLC-derived products."
readme.file = "README.md"
readme.content-type = "text/markdown"
license = {text = "MIT"}
keywords = ["SAR", "windspeed", "reseach","SAR",'Sentinel-1']
authors = [
{name = "Antoine Grouazel"}
]
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"scipy",
"xsarsea",
"xarray",
"h5netcdf",
"xarray-datatree",
"importlib_resources",
'tqdm'
]
dynamic = ["version"]
[build-system]
requires = ["setuptools>=64.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["slcwindinversion"]
[tool.setuptools_scm]
fallback_version = "999"
[tool.isort]
profile = "black"
skip_gitignore = true
float_to_top = true
default_section = "THIRDPARTY"
known_first_party = "slcwindinversion"
[project.scripts]
slcwindinversion = "slcwindinversion.cli:main"